aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcolin <colin@cicadas.surf>2023-09-09 14:14:24 -0700
committercolin <colin@cicadas.surf>2023-09-09 14:14:24 -0700
commita5615cba16837146573230a453632bd2f88ac1b1 (patch)
tree3ecf0e52b5d2704e103bb0988597e0dd4ec78f86
parent05b261a33be670df8fcdf00be801f8cbda1902b5 (diff)
updating
-rw-r--r--README.org7
-rw-r--r--examples/examples.lisp2
2 files changed, 5 insertions, 4 deletions
diff --git a/README.org b/README.org
index 983eee2..e070905 100644
--- a/README.org
+++ b/README.org
@@ -21,6 +21,7 @@ This approach has several beneifts:
you get purposeful documentation of your code for free. Why read a
comment when there's a test!?
+
Out of the box, ~testiere~ supports testing of the following:
- ~defun~
@@ -49,7 +50,7 @@ This compiles as normal. If you wish to run the tests in the
#+begin_src lisp
-(testiere:testiere-on)
+(testiere:on)
#+end_src
@@ -63,7 +64,7 @@ You can, of course, turn testiere off too:
#+begin_src lisp
-(testiere:testiere-off)
+(testiere:off)
#+end_src
@@ -121,7 +122,7 @@ Within the body of a ~(:tests ...)~ form are test expressions.
(in-package :testiere.examples)
;;; Turn Testiere On.
-(testiere-on)
+(testiere:on)
;;; BASIC TESTS
diff --git a/examples/examples.lisp b/examples/examples.lisp
index a188f2f..d437826 100644
--- a/examples/examples.lisp
+++ b/examples/examples.lisp
@@ -7,7 +7,7 @@
(in-package :testiere.examples)
;;; Turn Testiere On.
-(testiere-on)
+(testiere:on)
;;; BASIC TESTS