(successful? summary)
Returns true if the given test summary indicates all tests were successful, false otherwise.
(defn successful? [summary] (and (zero? (:fail summary 0)) (zero? (:error summary 0))))