Creates a blacklist of testers. Testers take a var and if they
return true the blacklist will fail the test.
(defn blacklist
"Creates a blacklist of testers. Testers take a var and if they
return true the blacklist will fail the test."
([test & tests]
{:type :blacklist
:tests (apply combine-matchers test tests)})
([test]
{:type :blacklist
:tests test}))
Comments top
No comments for blacklist. Log in to add a comment.