mirror of
https://github.com/astaxie/beego.git
synced 2024-10-31 23:30:53 +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.")
|
||
|
}
|
||
|
}
|