Bump to 0.4.7 for line number in message

This commit is contained in:
Colin Jones 2013-02-25 20:47:02 -06:00
parent 7ab93a0c38
commit ff9fbc98dd
2 changed files with 8 additions and 7 deletions

View File

@ -56,16 +56,17 @@ the sequence that you should follow).
You'll see something like this: You'll see something like this:
Problem in /home/colin/Projects/clojure-koans/src/koans/01_equalities.clj Now meditate on /home/colin/Projects/clojure-koans/src/koans/01_equalities.clj:3
--------------------- ---------------------
Assertion failed! Assertion failed!
We shall contemplate truth by testing reality, via equality. We shall contemplate truth by testing reality, via equality.
(= __ true) (= __ true)
The output is telling you that you have a failing test in 01_equalities.clj. The output is telling you that you have a failing test in the file named
So open that file up and make it pass! In general, you just fill in the `01_equalities.clj`, on line 3. So you just need to open that file up and make
blanks to make tests pass. Sometimes there are several (or even an infinite it pass! You'll always be filling in the blanks to make tests pass.
number) of correct answers: any of them will work in these cases. Sometimes there could be several correct answers (or even an infinite number):
any of them will work in these cases.
The koans differ from normal TDD in that the tests are already written for you, The koans differ from normal TDD in that the tests are already written for you,
so you'll have to pay close attention to the failure messages, because up until so you'll have to pay close attention to the failure messages, because up until

View File

@ -1,7 +1,7 @@
(defproject clojure-koans "0.4.6" (defproject clojure-koans "0.4.7"
:description "The Clojure koans." :description "The Clojure koans."
:dependencies [[org.clojure/clojure "1.3.0"] :dependencies [[org.clojure/clojure "1.3.0"]
[koan-engine "0.1.2"]] [koan-engine "0.1.3"]]
:dev-dependencies [[lein-koan "0.1.2"]] :dev-dependencies [[lein-koan "0.1.2"]]
:profiles {:dev {:dependencies [[lein-koan "0.1.2"]]}} :profiles {:dev {:dependencies [[lein-koan "0.1.2"]]}}
:plugins [[lein-koan "0.1.2"]] :plugins [[lein-koan "0.1.2"]]