Sha256: 1cafcbd68720957eb7ba5aa0dc4f2cd43fe99e65bdbea1a1d4adf508e6bfc908
Contents?: true
Size: 543 Bytes
Versions: 161
Compression:
Stored size: 543 Bytes
Contents
package luhn import "testing" const targetTestVersion = 2 func TestTestVersion(t *testing.T) { if testVersion != targetTestVersion { t.Errorf("Found testVersion = %v, want %v", testVersion, targetTestVersion) } } 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
161 entries across 161 versions & 1 rubygems