X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=xlunit.asd;h=a3f5e27b2ac603ae84f4161693385ba6b7bc3f86;hb=626d4ad3a850e199e5b4a472c06ae92532c82ac8;hp=67c0fdd5647aca725bcb070a1f7c034c3be91f96;hpb=381a23bb7ab8dd206bcd430ce9c7ee9c53e52f13;p=xlunit.git diff --git a/xlunit.asd b/xlunit.asd index 67c0fdd..a3f5e27 100644 --- a/xlunit.asd +++ b/xlunit.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2003 ;;;; -;;;; $Id: xlunit.asd,v 1.4 2003/08/04 17:04:50 kevin Exp $ +;;;; $Id: xlunit.asd,v 1.6 2003/08/05 22:56:25 kevin Exp $ ;;;; ************************************************************************* (defpackage #:xlunit-system (:use #:asdf #:cl)) @@ -26,22 +26,24 @@ ((:file "package") (:file "assert") (:file "tcase") - (:file "suite") (:file "listener") (:file "result") + (:file "suite") (:file "textui") (:file "printer") )) (defmethod perform ((o test-op) (c (eql (find-system 'xlunit)))) - (oos 'load-op 'xlunit-tests :force t) - (oos 'test-op 'xlunit-tests :force t)) + (operate 'load-op 'xlunit-tests :force t) + (operate 'test-op 'xlunit-tests :force t)) (defsystem xlunit-tests :depends-on (xlunit) :components ((:file "tests"))) (defmethod perform ((o test-op) (c (eql (find-system 'xlunit-tests)))) + (operate 'load-op 'xlunit-tests) (or (funcall (intern (symbol-name '#:do-tests) (find-package '#:xlunit-tests))) (error "test-op failed"))) +