test
List of symbols:
assert-compare, assert-compare, assert-equal, assert-equal, assert-error, assert-error, assert-error-msg, assert-error-msg, assert-false, assert-false, assert-not-compare, assert-not-compare, assert-not-equal, assert-not-equal, assert-true, assert-true
assert-compare
Usage: (test::assert-compare compare expected-val right-val body)
Namespace: root
Asserts the two values are true based on the provided comparator.
No Examples
assert-compare
Usage: (test::assert-compare compare expected-val right-val body)
Namespace: test
Asserts the two values are true based on the provided comparator.
No Examples
assert-equal
Usage: (test::assert-equal expected-val right-val body)
Namespace: root
Asserts the two values are identical.
No Examples
assert-equal
Usage: (test::assert-equal expected-val right-val body)
Namespace: test
Asserts the two values are identical.
No Examples
assert-error
Usage: (test::assert-error val body)
Namespace: root
Asserts the value is an error
No Examples
assert-error
Usage: (test::assert-error val body)
Namespace: test
Asserts the value is an error
No Examples
assert-error-msg
Usage: (test::assert-error-msg form key msg)
Namespace: root
Test asserts an error is thrown with a given key and message.
Example:
(test::assert-error-msg (err "error thrown") :error "error thrown")
assert-error-msg
Usage: (test::assert-error-msg form key msg)
Namespace: test
Test asserts an error is thrown with a given key and message.
Example:
(test::assert-error-msg (err "error thrown") :error "error thrown")
assert-false
Usage: (test::assert-false val body)
Namespace: root
Asserts the value is false
No Examples
assert-false
Usage: (test::assert-false val body)
Namespace: test
Asserts the value is false
No Examples
assert-not-compare
Usage: (test::assert-not-compare compare expected-val right-val body)
Namespace: root
Asserts the two values are not true based on the comparator.
No Examples
assert-not-compare
Usage: (test::assert-not-compare compare expected-val right-val body)
Namespace: test
Asserts the two values are not true based on the comparator.
No Examples
assert-not-equal
Usage: (test::assert-not-equal expected-val right-val body)
Namespace: root
Asserts the two values are not identical.
No Examples
assert-not-equal
Usage: (test::assert-not-equal expected-val right-val body)
Namespace: test
Asserts the two values are not identical.
No Examples
assert-true
Usage: (test::assert-true val body)
Namespace: root
Asserts the value is true.
No Examples
assert-true
Usage: (test::assert-true val body)
Namespace: test
Asserts the value is true.
No Examples