1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-16 15:23:32 +00:00
Beego/config_test.go

16 lines
247 B
Go
Raw Normal View History

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.")
}
}