From 52af3ee403756f1e9e44a03e1b1060214d2d3747 Mon Sep 17 00:00:00 2001 From: Christophe Gragnic Date: Tue, 2 Feb 2016 20:50:37 +0100 Subject: [PATCH] Tests are now run (and the first fixed). --- test/clojure_infix/core_test.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/clojure_infix/core_test.clj b/test/clojure_infix/core_test.clj index c534774..d9e8e46 100644 --- a/test/clojure_infix/core_test.clj +++ b/test/clojure_infix/core_test.clj @@ -3,5 +3,5 @@ (:use [clojure.test])) (deftest replace-me ;; FIXME: write ; TODO: more tests!!!!! - (= (load-infix-string (str 0.00000391664))) - (= 3 (load-infix-string "max(2,3)"))) + (is (= 0.00000391664 (load-infix-string (str 0.00000391664)))) + (is (= 3 (load-infix-string "max(2,3)"))))