projects
/
fiveam.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a295590
)
Added def-suite* macro
author
Marco Baringer
<mb@bese.it>
Sat, 24 Mar 2007 16:43:10 +0000
(17:43 +0100)
committer
Marco Baringer
<mb@bese.it>
Sat, 24 Mar 2007 16:43:10 +0000
(17:43 +0100)
src/suite.lisp
patch
|
blob
|
history
diff --git
a/src/suite.lisp
b/src/suite.lisp
index
ee4b2f6
..
bf1cc10
100644
(file)
--- a/
src/suite.lisp
+++ b/
src/suite.lisp
@@
-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.