1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-26 18:14:12 +00:00
Beego/utils/slice_test.go

16 lines
209 B
Go

package utils
import (
"testing"
)
func TestInSlice(t *testing.T) {
sl := []string{"A", "b"}
if !InSlice("A", sl) {
t.Error("should be true")
}
if InSlice("B", sl) {
t.Error("should be false")
}
}