Sha256: d940fdaf65ccd7e9bee92a284b3ff92a44e727ca167eecbffb360e7262e4f7ce
Contents?: true
Size: 524 Bytes
Versions: 374
Compression:
Stored size: 524 Bytes
Contents
(ns acronym-test (:require [clojure.test :refer [deftest is]] acronym)) (deftest test-acronym (is (= "" (acronym/acronym ""))) (is (= "PNG" (acronym/acronym "Portable Network Graphics"))) (is (= "ROR" (acronym/acronym "Ruby on Rails"))) (is (= "HTML" (acronym/acronym "HyperText Markup Language"))) (is (= "FIFO" (acronym/acronym "First In, First Out"))) (is (= "PHP" (acronym/acronym "PHP: Hypertext Preprocessor"))) (is (= "CMOS" (acronym/acronym "Complementary metal-oxide semiconductor"))))
Version data entries
374 entries across 374 versions & 1 rubygems