Liking cljdoc? Tell your friends :D

tupelo.test-cljs


define-fixtureclj/smacro

(define-fixture mode interceptor-map)
source (clj)source (cljs)

deftestclj/s≠macro

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

dotestclj/s≠macro

clj
(dotest & body)
cljs
(dotest &form &env & body)
source (clj)source (cljs)

isclj/s≠macro

clj
(is & forms)
cljs
(is &form &env & forms)
source (clj)source (cljs)

is=clj/s≠macro

clj
(is= & forms)
cljs
(is= &form &env & forms)

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

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

isntclj/s≠macro

clj
(isnt & body)
cljs
(isnt &form &env & body)

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/s≠macro

clj
(isnt= & body)
cljs
(isnt= &form &env & body)

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

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

nonblank=clj/s≠macro

clj
(nonblank= & forms)
cljs
(nonblank= &form &env & 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

set=clj/s≠macro

clj
(set= & forms)
cljs
(set= &form &env & 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

testingclj/s≠macro

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

throws?clj/s≠macro

clj
(throws? & forms)
cljs
(throws? &form &env & forms)

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

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

throws?-implclj/s

(throws?-impl & forms)
source

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

× close