Much progress! Many working!
This commit is contained in:
parent
538406b473
commit
e98906c85e
7 changed files with 679 additions and 244 deletions
10
test/adl/utils_test.clj
Normal file
10
test/adl/utils_test.clj
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
(ns adl.utils-test
|
||||
(:require [clojure.string :as s]
|
||||
[clojure.test :refer :all]
|
||||
[adl.utils :refer :all]))
|
||||
|
||||
(deftest singularise-tests
|
||||
(testing "Singularise"
|
||||
(is (= "address" (singularise "addresses")))
|
||||
(is (= "address" (singularise "address")))
|
||||
(is (= "expertise" (singularise "expertise")))))
|
||||
Loading…
Add table
Add a link
Reference in a new issue