Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
119 views

How can you “parameterize” Clojure Contrib's test-is?

Both Junit and TestNG provide mechanisms for iterating over a collection of input parameters and running your tests against them. In Junit this is supported via the Parameterized annotation, while ...
2
votes
1answer
180 views

how do i get rid of duplicate clojure test-is unit tests on the REPL

I have a little script (use :reload-all 'com.example.package1 'com.example.package2 'com.example.package3 'com.example.testlib) (run-tests 'com.example.package1 'com.example.package2 ...
1
vote
1answer
321 views

Unable to resolve symbol: is in this context

I'm braaaaand new to Clojure, and am having a bit of trouble getting running with unit tests. (ns com.bluepojo.scratch (:require clojure.test)) (defn add-one ([x] (+ x 1)) ) (is (= (add-one ...