diff options
| author | Andrey Listopadov <andreyorst@gmail.com> | 2021-02-17 19:29:10 +0300 |
|---|---|---|
| committer | Andrey Listopadov <andreyorst@gmail.com> | 2021-02-17 19:29:10 +0300 |
| commit | a7047d22c756222728ec1e2cd863c4875610be6e (patch) | |
| tree | e78cb318ab1e96ea5bed92f64e66d2fb6581cdac /tests/test.fnl | |
| parent | 5bc5ed932c1f564188938e7e07283f9720c6088a (diff) | |
fix(doc): use automatic link resolution in docs
Diffstat (limited to 'tests/test.fnl')
| -rw-r--r-- | tests/test.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test.fnl b/tests/test.fnl index 329f828..8541036 100644 --- a/tests/test.fnl +++ b/tests/test.fnl @@ -74,7 +74,7 @@ Deep compare values: [expr1 expr2 msg] "Assert for unequality. Like `assert`, except compares results of `expr1` and `expr2` for equality. Generates formatted message if -`msg` is not set to other message. Same as [`assert-eq`](#assert-eq)." +`msg` is not set to other message. Same as `assert-eq'." `(let [left# ,expr1 right# ,expr2 eq# ,(eq-fn) @@ -110,7 +110,7 @@ Deep compare values: (fn test.assert-not [expr msg] "Assert `expr` for not truth. Generates more verbose message if - `msg` is not set. Works the same as [`assert-is`](#assert-is)." + `msg` is not set. Works the same as `assert-is'." `(let [(suc# res#) (pcall #(not ,expr))] (if suc# (assert res# |