1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00
alice-lg-alice-lg/pkg/store/utils_test.go

12 lines
164 B
Go
Raw Normal View History

2021-10-27 14:49:58 +00:00
package store
2017-06-30 11:21:01 +02:00
import (
"testing"
)
func TestContainsCi(t *testing.T) {
if ContainsCi("foo bar", "BaR") != true {
t.Error("An unexpected error occured.")
}
2017-06-30 12:05:46 +02:00
}