Sha256: b37bd216a9c9e2333d7827397eeabcf39629a650e8e713f2370eb50584aec02a
Contents?: true
Size: 683 Bytes
Versions: 74
Compression:
Stored size: 683 Bytes
Contents
import org.scalatest.{Matchers, FunSuite} /** @version 1.3.0 */ class AcronymTest extends FunSuite with Matchers { test("basic") { Acronym.abbreviate("Portable Network Graphics") should be ("PNG") } test("lowercase words") { pending Acronym.abbreviate("Ruby on Rails") should be ("ROR") } test("punctuation") { pending Acronym.abbreviate("First In, First Out") should be ("FIFO") } test("all caps word") { pending Acronym.abbreviate("GNU Image Manipulation Program") should be ("GIMP") } test("punctuation without whitespace") { pending Acronym.abbreviate("Complementary metal-oxide semiconductor") should be ("CMOS") } }
Version data entries
74 entries across 74 versions & 1 rubygems