I have a test that wraps all of the is calls in a doseq: (deftest example (let [items (set-up)] (doseq [item items] (is (= xyz (func item)))))). when I run the file, kaocha throws an error saying, "test ran without assertions". if I put in a dummy (is 1) before the doseq, kaocha stops failing the test. what's the best way to handle this?
nice catch!
The collection is empty! Excellent observation. This has revealed a number of tests that “do nothing”.
if this is a bug, I can open a github issue for it!
Is items empty?
Hmm that’s a good point. I’ll check