Files
validate/chars_test.go
T
Aneurin Barker Snook 1cb434327a number tests
2023-10-08 16:20:21 +01:00

30 lines
516 B
Go

package validate
import "testing"
func TestChars(t *testing.T) {
type TestCase struct {
Input string
C string
Err error
}
hexRange := "0123456789abcdef"
testCases := []TestCase{
{Input: "abcd1234", C: hexRange},
{Input: "abcd 1234", C: hexRange, Err: ErrDisallowedChars},
}
for n, tc := range testCases {
t.Logf("(%d) Testing %q against %q", n, tc.Input, tc.C)
f := Chars(tc.C)
err := f(tc.Input)
if err != tc.Err {
t.Errorf("Expected error %v, got %v", tc.Err, err)
}
}
}