summaryrefslogtreecommitdiffstats
path: root/tests/module
diff options
context:
space:
mode:
authorGravatar Tom Willemse2025-11-04 23:31:01 -0800
committerGravatar Tom Willemse2025-11-04 23:31:01 -0800
commit96a007eecea9b67ba06d01c8fcdd9c09fc4b43e9 (patch)
tree5f691a3f3ec2faa0fb92b3394108cb4c63fccac5 /tests/module
downloadlezer-96a007eecea9b67ba06d01c8fcdd9c09fc4b43e9.tar.gz
lezer-96a007eecea9b67ba06d01c8fcdd9c09fc4b43e9.zip
Initial commit
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"))))