Files
exercism/clojure/hello-world/test/hello_world_test.clj
2020-11-16 09:21:14 -06:00

7 lines
169 B
Clojure

(ns hello-world-test
(:require [clojure.test :refer [deftest is]]
hello-world))
(deftest hello-world-test
(is (= "Hello, World!" (hello-world/hello))))