You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
346 B
13 lines
346 B
4 years ago
|
(ns two-fer-test
|
||
|
(:require [clojure.test :refer [deftest is]]
|
||
|
two-fer))
|
||
|
|
||
|
(deftest two-fer-test
|
||
|
(is (= "One for you, one for me." (two-fer/two-fer))))
|
||
|
|
||
|
(deftest name-alice-test
|
||
|
(is (= "One for Alice, one for me." (two-fer/two-fer "Alice"))))
|
||
|
|
||
|
(deftest name-bob-test
|
||
|
(is (= "One for Bob, one for me." (two-fer/two-fer "Bob"))))
|