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