Fix formatting

This commit is contained in:
Morgan Astra 2018-11-15 22:23:30 -08:00
parent c63934ec56
commit d7e94fe226

View File

@ -3,7 +3,7 @@
[clojure.test :refer [deftest testing is are]])) [clojure.test :refer [deftest testing is are]]))
(deftest prose-comma-list (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) (are [v s] (= (pages/prose-comma-list v) s)
["foo" "bar" "baz" "bobble"] "foo, bar, baz, and bobble" ["foo" "bar" "baz" "bobble"] "foo, bar, baz, and bobble"
["foo" "bar" "baz"] "foo, bar, and baz" ["foo" "bar" "baz"] "foo, bar, and baz"
@ -17,7 +17,7 @@
pronouns) pronouns)
["she/her"] '(["she" "her" "her" "hers" "herself"]) ["she/her"] '(["she" "her" "her" "hers" "herself"])
["she" "they"] '(["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"]) ["she/her" "foo/bar"] '(["she" "her" "her" "hers" "herself"])
["foo/bar"] '() ["foo/bar"] '()
["a/b/c/d/e"] '(("a" "b" "c" "d" "e")))) ["a/b/c/d/e"] '(("a" "b" "c" "d" "e"))))