config_test.go 247 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 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.") } }