Sha256: 9818d96e45de388edc228bc2af6912040974b4d14976ec127aa7e3aee4721bb1
Contents?: true
Size: 354 Bytes
Versions: 122
Compression:
Stored size: 354 Bytes
Contents
package luhn import "testing" func TestValid(t *testing.T) { for _, test := range testCases { if ok := Valid(test.input); ok != test.ok { t.Fatalf("Valid(%s): %s\n\t Expected: %t\n\t Got: %t", test.input, test.description, test.ok, ok) } } } func BenchmarkValid(b *testing.B) { for i := 0; i < b.N; i++ { Valid("2323 2005 7766 3554") } }
Version data entries
122 entries across 122 versions & 1 rubygems