diff --git a/test/pronouns/pages_test.clj b/test/pronouns/pages_test.clj index b4b00fb..7563be1 100644 --- a/test/pronouns/pages_test.clj +++ b/test/pronouns/pages_test.clj @@ -3,7 +3,7 @@ [clojure.test :refer [deftest testing is are]])) (deftest prose-comma-list - (testing "prose-comma-list turns a list of strings into a prose list" + (testing "`prose-comma-list` turns a list of strings into a prose list" (are [v s] (= (pages/prose-comma-list v) s) ["foo" "bar" "baz" "bobble"] "foo, bar, baz, and bobble" ["foo" "bar" "baz"] "foo, bar, and baz" @@ -17,7 +17,7 @@ pronouns) ["she/her"] '(["she" "her" "her" "hers" "herself"]) ["she" "they"] '(["she" "her" "her" "hers" "herself"] - ["they" "them" "their" "theirs" "themselves"]) + ["they" "them" "their" "theirs" "themselves"]) ["she/her" "foo/bar"] '(["she" "her" "her" "hers" "herself"]) ["foo/bar"] '() ["a/b/c/d/e"] '(("a" "b" "c" "d" "e"))))