clojure.test version of the flow macro
clojure.test version of the flow macro
(defcheck name & forms)
Similar to deftest
but to be used inside of defflow
tests
Similar to `deftest` but to be used inside of `defflow` tests
(defflow name & body)
(defflow name description & body)
Define a flow test function that accepts no arguments. The body follows a world-transition system, where each expression is either a world-transition, a check, or a query. Checks and queries will be retried when checks fail.
Define a flow test function that accepts no arguments. The body follows a world-transition system, where each expression is either a world-transition, a check, or a query. Checks and queries will be retried when checks fail.
(defnq name & forms)
Defines a retriable flow step. The flow will retry such steps adjacent checks fails.
Defines a retriable flow step. The flow will retry such steps adjacent checks fails.
(diff-test-result before after)
Subtract two clojure.test style summary maps.
Subtract two clojure.test style summary maps.
(fnq & forms)
Defines an anonymous retriable flow step. The flow will retry such steps adjacent checks fails.
Defines an anonymous retriable flow step. The flow will retry such steps adjacent checks fails.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close