diff options
Diffstat (limited to 'README.org')
-rw-r--r-- | README.org | 7 |
1 files changed, 4 insertions, 3 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 |