X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=xlunit.asd;h=f6f3d44445fb65f61ef6b507471016ae47973ec4;hb=e6a0ad7329d3ce497ce8c9f3d0d37811b2da4811;hp=30ca6f74ff389857e64e1436bea3f2750810a598;hpb=34803ef0f0a02430b51382e7684f6d775d135953;p=xlunit.git diff --git a/xlunit.asd b/xlunit.asd index 30ca6f7..f6f3d44 100644 --- a/xlunit.asd +++ b/xlunit.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2003 ;;;; -;;;; $Id: xlunit.asd,v 1.1 2003/08/04 09:51:36 kevin Exp $ +;;;; $Id: xlunit.asd,v 1.3 2003/08/04 16:13:58 kevin Exp $ ;;;; ************************************************************************* (defpackage #:xlunit-system (:use #:asdf #:cl)) @@ -17,23 +17,31 @@ :name "xlunit" :author "Kevin Rosenberg based on work by Craig Brozensky" :maintainer "Kevin M. Rosenberg " - :licence "Public domain" + :licence "BSD" :description "Extreme Lisp Testing Suite" - :long-description "The XLUNIT package is toolkit for building test suites based on the XPTEST package by Craig Brozensky." + :long-description "The XLUnit package is toolkit for building test suites. It is based on the XPTest package by Craig Brozensky and the JUnit package by Kent Beck." + :serial t :components ((:file "package") - (:file "src" :depends-on ("package")))) + (:file "assert") + (:file "test-case") + (:file "suite") + (:file "listener") + (:file "result") + (:file "textui") + (:file "printer") + )) (defmethod perform ((o test-op) (c (eql (find-system 'xlunit)))) - (oos 'load-op 'xlunit-tests) - (oos 'test-op 'xlunit-tests)) + (oos 'load-op 'xlunit-tests :force t) + (oos 'test-op 'xlunit-tests :force t)) (defsystem xlunit-tests - :depends-on (xlunit) - :components ((:file "tests"))) + :depends-on (xlunit) + :components ((:file "tests"))) (defmethod perform ((o test-op) (c (eql (find-system 'xlunit-tests)))) - (or (funcall (intern (symbol-name #:do-tests) - (find-package #:xlunit-tests))) + (or (funcall (intern (symbol-name '#:do-tests) + (find-package '#:xlunit-tests))) (error "test-op failed")))