summary refs log tree commit diff stats
path: root/clojure/hello-world/test/hello_world_test.clj
blob: ce032d912ef7f8dd6bc0612535ffdf9f21f3d198 (plain) (blame)
1
2
3
4
5
6
(ns hello-world-test
  (:require [clojure.test :refer [deftest is]]
            hello-world))

(deftest hello-world-test
  (is (= "Hello, World!" (hello-world/hello))))