mirror of
https://github.com/astaxie/beego.git
synced 2024-11-05 10:30:56 +00:00
16 lines
209 B
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")
|
||
|
}
|
||
|
}
|