Returns true if the given test summary indicates all tests
were successful, false otherwise.
(defn successful?
"Returns true if the given test summary indicates all tests
were successful, false otherwise."
{:added "1.1"}
[summary]
(and (zero? (:fail summary 0))
(zero? (:error summary 0))))
Comments top
No comments for successful?. Log in to add a comment.