Skip to content

Commit

Permalink
Added def-suite* macro
Browse files Browse the repository at this point in the history
  • Loading branch information
segv committed Mar 24, 2007
1 parent a295590 commit 660083a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/suite.lisp
Expand Up @@ -33,6 +33,11 @@ defined in this suite."
,@(when default-test-args `(:default-test-args ,default-test-args)))
',name))

(defmacro def-suite* (name &rest def-suite-args)
`(progn
(def-suite ,name ,@def-suite-args)
(in-suite ,name)))

(defun make-suite (name &key description in default-test-args)
"Create a new test suite object.
Expand Down

0 comments on commit 660083a

Please sign in to comment.