Sha256: 5d27df8728fec90b7f8a5682fa16cdac7101fc1ffbbbc46a629bc6f9e6310620
Contents?: true
Size: 284 Bytes
Versions: 30
Compression:
Stored size: 284 Bytes
Contents
package acronym import ( "testing" ) func TestAcronym(t *testing.T) { for _, test := range stringTestCases { actual := Abbreviate(test.input) if actual != test.expected { t.Errorf("Acronym test [%s], expected [%s], actual [%s]", test.input, test.expected, actual) } } }
Version data entries
30 entries across 30 versions & 1 rubygems