Skip to content

Instantly share code, notes, and snippets.

@brockthebear
Created September 11, 2018 22:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brockthebear/4b3b4f89309834281055bf77962be8d5 to your computer and use it in GitHub Desktop.
Save brockthebear/4b3b4f89309834281055bf77962be8d5 to your computer and use it in GitHub Desktop.
(ns hello-world)
(defn hello [] "Hello, World!" )
(ns hello-world-test
(:require [clojure.test :refer [deftest is]]
hello-world))
(deftest hello-world-test
(is (= "Hello, World!" (hello-world/hello))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment