Liking cljdoc? Tell your friends :D

me.pmatiello.mockfn.matchers


aclj

(a type)

Returns a matcher that expects an instance of the provided type.

Returns a matcher that expects an instance of the provided type.
sourceraw docstring

and>clj

(and> & matchers)

Returns a matcher that expects a value matching all provided matchers.

Returns a matcher that expects a value matching all provided matchers.
sourceraw docstring

anyclj

(any)

Returns a matcher that expects any value.

Returns a matcher that expects any value.
sourceraw docstring

at-leastclj

(at-least value)

Returns a matcher that expects a value greater than or equal to the argument.

Returns a matcher that expects a value greater than or equal to the argument.
sourceraw docstring

at-mostclj

(at-most value)

Returns a matcher that expects a value less than or equal to the argument.

Returns a matcher that expects a value less than or equal to the argument.
sourceraw docstring

betweenclj

(between lower-bound upper-bound)

Returns a matcher that expects a value between lower-bound and upper-bound, inclusive.

Returns a matcher that expects a value between lower-bound and upper-bound, inclusive.
sourceraw docstring

contains-allclj

(contains-all values)

Returns a matcher that expects a collection containing all the provided values.

Returns a matcher that expects a collection containing all the provided values.
sourceraw docstring

contains-anyclj

(contains-any values)

Returns a matcher that expects a collection containing at least one of the provided values.

Returns a matcher that expects a collection containing at least one of the provided values.
sourceraw docstring

descriptionclj

(description matcher)

Describes a matcher by returning it's name and expectations.

Describes a matcher by returning it's name and expectations.
sourceraw docstring

emptyclj

(empty)

Returns a matcher that expects an empty value.

Returns a matcher that expects an empty value.
sourceraw docstring

ends-withclj

(ends-with suffix)

Returns a matcher that expects a string ending with the provided suffix.

Returns a matcher that expects a string ending with the provided suffix.
sourceraw docstring

exactlyclj

(exactly value)

Returns a matcher that expects an exact value.

Returns a matcher that expects an exact value.
sourceraw docstring

falsyclj

(falsy)

Returns a matcher that expects a falsy value.

Returns a matcher that expects a falsy value.
sourceraw docstring

includesclj

(includes substring)

Returns a matcher that expects a string containing the provided substring.

Returns a matcher that expects a string containing the provided substring.
sourceraw docstring

makeclj

(make name match-fn expected)
(make name match-fn expected args-desc-fn)

Produces a new matcher instance.

Produces a new matcher instance.
sourceraw docstring

matches?clj

(matches? matcher actual)

Returns whether the matcher accepts the actual value.

Returns whether the matcher accepts the actual value.
sourceraw docstring

not>clj

(not> matcher)

Returns a matcher that expects a value not matching the provided matcher.

Returns a matcher that expects a value not matching the provided matcher.
sourceraw docstring

or>clj

(or> & matchers)

Returns a matcher that expects a value matching any of the provided matchers.

Returns a matcher that expects a value matching any of the provided matchers.
sourceraw docstring

predclj

(pred pred-fn)

Returns a matcher that expects a value satisfying the provided predicate.

Returns a matcher that expects a value satisfying the provided predicate.
sourceraw docstring

regexclj

(regex regex)

Returns a matcher that expects a string matching the provided regular expression.

Returns a matcher that expects a string matching the provided regular expression.
sourceraw docstring

starts-withclj

(starts-with prefix)

Returns a matcher that expects a string starting with the provided prefix.

Returns a matcher that expects a string starting with the provided prefix.
sourceraw docstring

truthyclj

(truthy)

Returns a matcher that expects a truthy value.

Returns a matcher that expects a truthy value.
sourceraw docstring

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

× close