This is the "classic" expectations library (considered stable and "in maintenance mode" at this point).
It uses its own set of tooling and is not compatible with clojure.test
-based tooling.
There is a very actively-maintained variant of this library that is compatible with clojure.test
and its tooling:
expectations.clojure.test (documentation)
Visit this website for all of the "classic" expectation docs:
https://clojure-expectations.github.io
Running the tests:
lein do clean, test
This will run the (successful) expectations for Clojure (currently 83).
Then run the ClojureScript tests interactively:
./scripts/repl
cljs.user=> (require 'expectations.test)
...
cljs.user=> (expectations.test/-main)
This will run the (successful) expectations that are compatible with ClojureScript (currently 69/69).
You can run all expectations via:
lein do clean, expectations
This includes the deliberately failing expectations (used to visually confirm behavior for failing tests) and should run 128 assertions in total, of which 43 will fail and 2 will error.
Copyright (c) 2010-2019, Jay C Fields, Sean Corfield. All rights reserved. This software is available under the BSD 3-Clause Open Source License.