summary refs log tree commit diff stats
path: root/clojure/hello-world/test/hello_world_test.clj
diff options
context:
space:
mode:
Diffstat (limited to 'clojure/hello-world/test/hello_world_test.clj')
-rw-r--r--clojure/hello-world/test/hello_world_test.clj6
1 files changed, 6 insertions, 0 deletions
diff --git a/clojure/hello-world/test/hello_world_test.clj b/clojure/hello-world/test/hello_world_test.clj
new file mode 100644
index 0000000..ce032d9
--- /dev/null
+++ b/clojure/hello-world/test/hello_world_test.clj
@@ -0,0 +1,6 @@
+(ns hello-world-test
+  (:require [clojure.test :refer [deftest is]]
+            hello-world))
+
+(deftest hello-world-test
+  (is (= "Hello, World!" (hello-world/hello))))