No assertion warning. Checks for absence of assertions in clojure.test tests.
Require naw.core in your test namespace(s).
Note that in a-test no assertions are being made, but another-test has one
assertion. So we expect a warning only about a-test.
(ns foo.core-test
(:require [clojure.test :refer [deftest testing is]]
[naw.core]))
(deftest a-test
(testing "..."
1))
(deftest another-test
(testing (is 1)))
When executing the tests, the following warning will get printed to *err*:
WARNING: no assertions made in test a-test!
Copyright © 2019 Michiel Borkent
Distributed under the EPL License. See LICENSE.
Can you improve this documentation?Edit on GitHub
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |