diff --git a/README.org b/README.org index 651c61d..63e4e4d 100644 --- a/README.org +++ b/README.org @@ -1,6 +1,13 @@ #+STARTUP: hidestars showall * Humane test output for clojure.test - Instead of this: + To use this library, include it in your dev profile: + : [pjstadig/humane-test-output "0.1.0"] + + To activate it you will need to require ~pjstadig.humane-test-output~. One + way to do this would be to have a ~user.clj~ file in your test classpath that + has ~(require 'pjstadig.humane-test-output)~ in it. + + Once it is activated, instead of this: : FAIL in (a-test) (humane_test_output_test.clj:7) : FIXME, I fail. : expected: (= {:foo :bar, :baz :quux, :something "a long string?", :another-key "and another value"} {:fo :bar, :baz :quux, :something "a long string?", :another-key "and another value"}) diff --git a/project.clj b/project.clj index ad6d479..5c202c2 100644 --- a/project.clj +++ b/project.clj @@ -3,4 +3,4 @@ :url "http://github.com/pjstadig/humane-test-output/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} - :dependencies [[org.clojure/clojure "1.5.1"]]) + :dependencies [[org.clojure/clojure "1.3.0"]])