X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Ftest.lisp;h=7d763d10fed8570fc2185ebd8aca39fc6b3976f7;hb=d97c941accdf26ae7433a71c5b210db70b0fdd2e;hp=82b0c6cb7d11fe3c6c36c84c89db92395a30efc2;hpb=1454981ac5f4f7ea8fe741a8125efbf0b09497ea;p=fiveam.git diff --git a/src/test.lisp b/src/test.lisp index 82b0c6c..7d763d1 100644 --- a/src/test.lisp +++ b/src/test.lisp @@ -16,7 +16,7 @@ names to objects.") (defmacro test (name &body body) - "Create a suite named NAME. If NAME is a list it must be of the + "Create a test named NAME. If NAME is a list it must be of the form: (name &key depends-on suite) @@ -43,18 +43,18 @@ depending on another. SUITE defaults to the current value of *SUITE*." (destructuring-bind (name &key depends-on (suite nil suite-supplied-p)) (ensure-list name) - (let (lambda description) + (let (description) (setf description (if (stringp (car body)) (pop body) - "") - lambda body) + "")) `(progn - (setf (get-test ',name) - (make-instance 'test-case - :name ',name - :test-lambda (lambda () ,@lambda) - :description ,description - :depends-on ',depends-on)) + (setf (get-test ',name) (make-instance 'test-case + :name ',name + :test-lambda + (lambda () + (funcall (compile nil '(lambda () ,@body)))) + :description ,description + :depends-on ',depends-on)) ,(if suite-supplied-p `(setf (gethash ',name (tests (get-test ',suite))) ',name)