alice-lg/pkg/store/utils_test.go
Annika Hannig aa9292b74c
moved test
2021-10-27 14:49:58 +00:00

12 lines
164 B
Go

package store
import (
"testing"
)
func TestContainsCi(t *testing.T) {
if ContainsCi("foo bar", "BaR") != true {
t.Error("An unexpected error occured.")
}
}