Liking cljdoc? Tell your friends :D

tupelo.test

Testing functions.

Testing functions.
raw docstring

check-iscljmacro

(check-is & body)
source

check-isntcljmacro

(check-isnt & body)
source

define-fixturecljmacro

(define-fixture mode interceptor-map)
source

deftestclj/smacro

(deftest & forms)
source (clj)source (cljs)

dospeccljmacro

(dospec & body)
source

dotestclj/smacro

(dotest & body)

Like clojure.test/deftest, but doesn't require a test name. Usage:

(ns xyz.. (:use tupelo.test))

(dotest (is= 5 (+ 2 3)) ; contraction of (is (= ...)) (isnt false) ; contraction of (is (not ...)) (set= [1 2 3] [3 2 1]) ; set equality semantics (throws? (/ 1 0)))

Like clojure.test/deftest, but doesn't require a test name. Usage:

(ns xyz..
  (:use tupelo.test))

(dotest
  (is= 5 (+ 2 3))          ; contraction of (is (= ...))
  (isnt false)             ; contraction of (is (not ...))
  (set= [1 2 3] [3 2 1])   ; set equality semantics
  (throws? (/ 1 0)))
source (clj)source (cljs)raw docstring

dotest-focusclj/smacro

(dotest-focus & body)

Alias for tupelo.test/deftest-focus

Alias for tupelo.test/deftest-focus 
source (clj)source (cljs)raw docstring

isclj/smacro

(is & forms)

Equivalent to clojure.test/is.

Equivalent to clojure.test/is.
source (clj)source (cljs)raw docstring

is-nonblank=clj/smacro

(is-nonblank= & forms)

Returns true if each input string is equal treating all whitespace as equivalent.

Returns true if each input string is equal treating all whitespace as equivalent.
source (clj)source (cljs)raw docstring

is-set=clj/smacro

(is-set= & forms)

Converts each input collection to a set, then tests for equality.

Converts each input collection to a set, then tests for equality.
source (clj)source (cljs)raw docstring

is=clj/smacro

(is= & forms)

Use (is= ...) instead of (is (= ...)) for clojure.test

Use (is= ...) instead of (is (= ...)) for clojure.test
source (clj)source (cljs)raw docstring

isntclj/smacro

(isnt & forms)

Use (isnt ...) instead of (is (not ...)) for clojure.test

Use (isnt ...) instead of (is (not ...)) for clojure.test
source (clj)source (cljs)raw docstring

isnt=clj/smacro

(isnt= & forms)

Use (isnt= ...) instead of (is (not= ...)) for clojure.test

Use (isnt= ...) instead of (is (not= ...)) for clojure.test
source (clj)source (cljs)raw docstring

testingclj/smacro

(testing & forms)
source (clj)source (cljs)

throws-not?clj/smacro

(throws-not? & forms)

The opposite of (throws? ...)

The opposite of (throws? ...)
source (clj)source (cljs)raw docstring

throws?clj/smacro

(throws? & forms)

Use (throws? ...) instead of (is (thrown? ...)) for clojure.test. Usage: (throws? (/ 1 0)) ; catches any Throwable

Use (throws? ...) instead of (is (thrown? ...)) for clojure.test. Usage:
(throws? (/ 1 0))                      ; catches any Throwable
source (clj)source (cljs)raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close