From 243f2b0da3e11c6310ed5594076d38f8ba3d4f71 Mon Sep 17 00:00:00 2001 From: colin Date: Sun, 10 Sep 2023 17:17:41 -0700 Subject: update readme --- README.org | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.org b/README.org index cfbe780..3d6c449 100644 --- a/README.org +++ b/README.org @@ -159,9 +159,9 @@ tests that aren't part of the package you're testing." #+testiere (:tests (:let ((*count* 5)) - (:funcall #'increment-count) + (:do (increment-count)) (= *count* 6) - (:funcall #'increment-count 4) + (:do (increment-count 4)) (= *count* 10)) (:let ((*count* -10)) (= (increment-count) -9))) @@ -234,7 +234,6 @@ tests that aren't part of the package you're testing." (:is (typep 10 'optional-int)) (:is (not (typep "foo" 'optional-int)))) '(or integer null)) - #+end_src @@ -260,3 +259,5 @@ Users can register ~testiere~ hooks by calling into the body of a ~restart-case~. See =src/standard-hooks.lisp= for examples. +Any macro that has been so registered will be available for testing at +compile time. -- cgit v1.2.3