1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-07 08:10:18 +00:00

added FlashName,FlashSeperator, & Tests

This commit is contained in:
Jared Folkins
2014-03-13 22:30:12 -07:00
parent 439b1afb85
commit 4951314837
5 changed files with 76 additions and 11 deletions

15
config_test.go Normal file
View File

@ -0,0 +1,15 @@
package beego
import (
"testing"
)
func TestDefaults(t *testing.T) {
if FlashName != "BEEGO_FLASH" {
t.Errorf("FlashName was not set to default.")
}
if FlashSeperator != "BEEGOFLASH" {
t.Errorf("FlashName was not set to default.")
}
}