summaryrefslogtreecommitdiff
path: root/lib/string.test.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/string.test.fnl')
-rw-r--r--lib/string.test.fnl13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/string.test.fnl b/lib/string.test.fnl
new file mode 100644
index 0000000..1f9bdbd
--- /dev/null
+++ b/lib/string.test.fnl
@@ -0,0 +1,13 @@
+(let [{: capitalize
+ } (require :lib.string)
+ {: describe
+ : test-end} (require :lib.test)]
+
+(describe "# STRING" (fn []
+ (describe "capitalize()" (fn [t]
+ (t {:given "a string"
+ :should "capitalize it"
+ :expected :Giraffe
+ :actual (capitalize :giraffe)})))
+ (test-end))))
+