Bump to 0.4.7 for line number in message
This commit is contained in:
parent
7ab93a0c38
commit
ff9fbc98dd
11
README.md
11
README.md
@ -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
|
||||||
|
@ -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"]]
|
||||||
|
Loading…
Reference in New Issue
Block a user