lein spec -a -f tmux
Use speclj, and make sure speclj-tmux
is somewhere in your dependencies. I put it here:
:profiles {:dev {:dependencies [[speclj-tmux "1.0.0"]]}}
Here's an entire project.clj
:
(defproject myproject "1.2.3"
:description "My Project"
:dependencies [[org.clojure/clojure "1.4.0"]]
:plugins [[speclj "2.5.0"]]
:test-paths ["spec/"]
:profiles {:dev {:dependencies [[speclj "2.5.0"]
[speclj-tmux "1.0.0"]}})
Paul Gross, for his work on speclj-growl.