Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What autotest tools exist for Clojure

I was wondering what autotest tools exists for clojure. In Ruby I have ZenTest, redgreeen etc to continuously keep on testing my code. I would like to have something similar for Clojure

So far I have found this simple script https://github.com/devn/clojure-autotest on the github. A bit crude for my taste. All tests run when a change occurrs. Also it may blurt out a long stacktrace in case of syntax errors, obscuring what goes wrong.

like image 293
zetafish Avatar asked Dec 06 '11 21:12

zetafish


1 Answers

Take a look at the Testing section on the Leiningen plugin page.

Notably there's lein-autotest for Stuart Sierras lazytest framework and speclj.

like image 134
Christian Berg Avatar answered Nov 24 '22 14:11

Christian Berg