From 7a2f2166d41297abfa49793fb0cfebc30e5c569a Mon Sep 17 00:00:00 2001 From: Paul Stadig Date: Mon, 11 Mar 2013 19:47:44 -0400 Subject: [PATCH] Updates the documentation for the renamed namespaces. --- CHANGELOG.org | 2 ++ README.org | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.org b/CHANGELOG.org index 8652ef2..4e3660b 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -2,6 +2,8 @@ * conjecture changelog ** 0.3.0 - Compatible with Clojure 1.2.1. + - Renamed groupId to conjecture. + - Renamed namespaces from name.stadig.* => conjecture ** 0.2.0 - Runs fixtures when you call a function as a test (e.g. at a REPL) - Removes support for singleton fixtures. They did not provide an diff --git a/README.org b/README.org index fe6f8c9..1790c6f 100644 --- a/README.org +++ b/README.org @@ -3,23 +3,23 @@ A ~clojure.test~ compatible third-party testing library for Clojure. Please contribute code and features through GitHub issues and pull requests. ** Usage - Same as ~clojure.test~, except you pull in ~name.stadig.conjecture~. + Same as ~clojure.test~, except you pull in ~conjecture.core~. For example, you would add the following dependency to your project.clj: : :dependencies [[name.stadig/conjecture "0.2.0"]] - Use ~name.stadig.conjecture~ in your tests: + Use ~conjecture.core~ in your tests: : (ns foo.bar.test - : (:use [name.stadig.conjecture])) + : (:use [conjecture.core])) : : (deftest test-widget : (is (= foo bar)) : ...) Conjecture is compatible with any ~clojure.test~ based tests you may have. - You simply swap ~name.stadig.conjecture~ in for ~clojure.test~. + You simply swap ~conjecture.core~ in for ~clojure.test~. You can add the lein-conjecture plugin to your project.clj, if that's your style: