aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcolin <colin@cicadas.surf>2023-09-10 17:17:41 -0700
committercolin <colin@cicadas.surf>2023-09-10 17:17:41 -0700
commit243f2b0da3e11c6310ed5594076d38f8ba3d4f71 (patch)
tree9c99e749d83554876eada0c3359040ffa3942aa9
parent554dbe8181db32f7f01f9dac082594e06874045a (diff)
update readme
-rw-r--r--README.org7
1 files 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.