From 1632984d73f09747a1af1eeb9f949d5eeaaf8df7 Mon Sep 17 00:00:00 2001 From: Plinio Balduino Date: Mon, 16 Apr 2012 13:38:23 -0300 Subject: [PATCH] Removed debug messages --- test/north/test/core.clj | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/test/north/test/core.clj b/test/north/test/core.clj index ea5c443..16007ce 100644 --- a/test/north/test/core.clj +++ b/test/north/test/core.clj @@ -1,42 +1,6 @@ (ns north.test.core (:use [north.core])) -(use 'clojure.pprint) - -(println "Describe") -(pprint -(macroexpand-1 - '(describe "North" - (context "using context" - (it "should test simple assertions" - (should (= 1 1) be-true) - (should (= 1 0) be-false) - (should (+ 1 1) be-equals 2) - (should (+ 1 1) be-not-equals 1)))))) - -(println) - -(println "Context") -(pprint -(macroexpand - '(context "using context" - (it "should test simple assertions" - (should (= 1 1) be-true) - (should (= 1 0) be-false) - (should (+ 1 1) be-equals 2) - (should (+ 1 1) be-not-equals 1))))) - -(println) - -(println "It") -(pprint -(macroexpand - '(it "should test simple assertions" - (should (= 1 1) be-true) - (should (= 1 0) be-false) - (should (+ 1 1) be-equals 2) - (should (+ 1 1) be-not-equals 1)))) - (describe "North" (context "using context" (it "should test simple assertions"