diff options
-rw-r--r-- | README.org | 7 | ||||
-rw-r--r-- | examples/examples.lisp | 2 |
2 files changed, 5 insertions, 4 deletions
@@ -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 |