mirror of
https://github.com/astaxie/beego.git
synced 2024-11-01 00:30:54 +00:00
16 lines
247 B
Go
16 lines
247 B
Go
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.")
|
|
}
|
|
}
|