]> code.delx.au - gnu-emacs-elpa/commitdiff
Merge branch 'master' of github.com:rocky/emacs-test-simple
authorrocky <rocky@gnu.org>
Wed, 12 Jun 2013 09:22:40 +0000 (05:22 -0400)
committerrocky <rocky@gnu.org>
Wed, 12 Jun 2013 09:22:40 +0000 (05:22 -0400)
test-simple.el

index 84da37b3041d0296e085d6e4f1430a0973963a17..9e9f7bd059a26b43518f34bdfa73e5add0d6dee3 100644 (file)
 ;;   - context macros,
 ;;   - enclosing specifications,
 ;;   - required test tags.
-;;   But if you want, you still can add custom assert failure messages or
-;;   add note messages before a group of tests.
 ;;
-;; * Accomodates both interactive and non-interactive use
-;;    - For interactive use, one can use eval-last-sexp, eval-region,
-;;      and eval-buffer. One can edebug the code.
-;;    -  For non-interactive use is run as
+;;   But if you want, you still can enclose tests in a local scope,
+;;   add customized assert failure messages, or add summary messages
+;;   before a group of tests.
+;;
+;; * Accomodates both interactive and non-interactive use.
+;;    - For interactive use, one can use `eval-last-sexp', `eval-region',
+;;      and `eval-buffer'. One can `edebug' the code.
+;;    -  For non-interactive use, run:
 ;;        emacs --batch --no-site-file --no-splash --load <test-lisp-code.el>
 ;;
 ;; Here is an example using gcd.el found in the examples directory.