Initial Commit

This commit is contained in:
2016-08-13 18:20:14 -05:00
commit 50f4a86fd8
408 changed files with 15301 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
(ns hello-world-test
(:require [clojure.test :refer [deftest is]]
hello-world))
(deftest hello-world-test
(is (= "Hello, World!" (hello-world/hello))))
(deftest hello-alice-test
(is (= "Hello, Alice!" (hello-world/hello "Alice"))))
(deftest hello-bob-test
(is (= "Hello, Bob!" (hello-world/hello "Bob"))))