12 lines
164 B
Go
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.")
|
|
}
|
|
}
|