Skip to content

Commit

Permalink
Removed debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
pbalduino committed Apr 16, 2012
1 parent 80300ed commit 1632984
Showing 1 changed file with 0 additions and 36 deletions.
36 changes: 0 additions & 36 deletions 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"
Expand Down

0 comments on commit 1632984

Please sign in to comment.