aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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