Create a test function named after desc, recording
the context in metadata
(defmacro it
"Create a test function named after desc, recording
the context in metadata"
[desc & forms]
`(defn! ~(with-meta (test-function-name desc) (test-function-metadata desc forms))
"Generated test from the it macro."
[]
~@forms))
Comments top
No comments for it. Log in to add a comment.