From 523f0ad4c01beb02363445e6e5a0eb842a6e647a Mon Sep 17 00:00:00 2001 From: Jiho Sung Date: Tue, 31 Oct 2023 02:56:20 -1000 Subject: [PATCH] Unit test example does not work (testing.md) (#508) use fiveam:test * #490 --- testing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing.md b/testing.md index 2930473..0e7237d 100644 --- a/testing.md +++ b/testing.md @@ -233,7 +233,7 @@ We said earlier that a check accepts an optional custom reason that can be forma We are testing a math function: ~~~lisp -(test simple-maths +(fiveam:test simple-maths (is (= 3 (+ 1 1)))) ~~~ @@ -272,7 +272,7 @@ Running test suite NIL Now, we can give it a custom reason: ~~~lisp -(test simple-maths +(fiveam:test simple-maths (is (= 3 (+ 1 1)) "Maths should work, right? ~a. Another parameter is: ~S" t :foo)) ~~~