-
-
Notifications
You must be signed in to change notification settings - Fork 653
Closed
Labels
Description
Would it be possible to extend Cider to support the clojure.test/with-test
macro?
Basically, I’d like to run tests defined in this way, too:
(test/with-test
(defn hello [name]
(str "Hello, " name))
(is (= (hello "Brian") "Hello, Brian"))
(is (= (hello nil) "Hello, ")))
Right now, these are not loaded because they are attached as meta data to the functions.