xt/app_test.go
2025-03-13 22:36:24 -06:00

15 lines
248 B
Go

package main
import (
"testing"
"github.com/matryer/is"
)
func TestNotAny(t *testing.T) {
is := is.New(t)
is.True(!notAny("asdf1asdf", "abcdefghijklmnopqrstuvwxyz234567"))
is.True(notAny("asdf2asdf", "abcdefghijklmnopqrstuvwxyz234567"))
}