We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
clojure.test/is false
is false is a useful and handy pattern for creating robust tests.
is false
There's also assert false, but test suites aren't guaranteed to run under *assert* true.
assert false
*assert* true
Likewise there's (throw ...) but it's more verbose and arguably less intentful.
(throw ...)
The text was updated successfully, but these errors were encountered:
[Fix jonase#384] Support is false pattern
5d08f0a
Closes jonase#384
75df964
[Fix #384] Support is false pattern (#390)
c481832
Successfully merging a pull request may close this issue.
is false
is a useful and handy pattern for creating robust tests.There's also
assert false
, but test suites aren't guaranteed to run under*assert* true
.Likewise there's
(throw ...)
but it's more verbose and arguably less intentful.The text was updated successfully, but these errors were encountered: