Skip to content

Latest commit

 

History

History
55 lines (34 loc) · 950 Bytes

README.md

File metadata and controls

55 lines (34 loc) · 950 Bytes

lein-expectations

A leiningen plugin to make running tests written using expectations library.

Usage

For Leiningen 2.0:

Declare lein-expectations in project.clj:

:plugins [[lein-expectations "0.0.7"]]

For Leiningen 1.x - use lein-expectations 0.0.5 or earlier:

Declare lein-expectations in project.clj:

:dev-dependencies [[lein-expectations "0.0.5"]]

or install as a plugin:

$ lein plugin install lein-expectations "0.0.5"

To run all your tests:

$ lein expectations

To run specific test namespaces:

$ lein expectations my.test.namespace1 my.test.namespace2

To run test namespaces by regex:

$ lein expectations my.tests.foo.* my.tests.bar.*

License

Copyright (C) 2012 Gareth Jones

Distributed under the Eclipse Public License, the same as Clojure.

Contributors

Sean Corfield, Lee Hinman