summaryrefslogtreecommitdiffstats
path: root/tests/module
diff options
context:
space:
mode:
Diffstat (limited to 'tests/module')
-rw-r--r--tests/module/greet-test.phel6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/module/greet-test.phel b/tests/module/greet-test.phel
new file mode 100644
index 0000000..1caef0f
--- /dev/null
+++ b/tests/module/greet-test.phel
@@ -0,0 +1,6 @@
+(ns phel-web-skeleton-tests\module\example-test
+ (:require web-skeleton\module\greet :as g)
+ (:require phel\test :refer [deftest is]))
+
+(deftest test-greet
+ (is (= "Hello, Name" (g/greet "Name"))))