r5481: *** empty log message ***
[wol.git] / wol.asd
diff --git a/wol.asd b/wol.asd
index 849582a2b9a2cb36ef2ee3561fa8a7782582476a..65eeb7022a134416cc8737cbbd68b083914a2db8 100644 (file)
--- a/wol.asd
+++ b/wol.asd
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  July 2003
 ;;;;
-;;;; $Id: wol.asd,v 1.4 2003/07/19 20:32:48 kevin Exp $
+;;;; $Id: wol.asd,v 1.6 2003/08/09 21:42:24 kevin Exp $
 ;;;;
 ;;;; This file and Wol are Copyright (c) 2003 by Kevin M. Rosenberg
 ;;;; *************************************************************************
      (:file "sessions" :depends-on ("classes"))
      (:file "uri" :depends-on ("classes"))
      (:file "log" :depends-on ("classes"))
+     (:file "color-picker" :depends-on ("package"))
      ))
+
+(defmethod perform ((o test-op) (c (eql (find-system 'wol))))
+  (operate 'load-op 'wol-tests)
+  (operate 'test-op 'wol-tests))
+
+(defsystem wol-tests
+    :depends-on (wol xlunit)
+    :components ((:file "tests")))
+
+(defmethod perform ((o test-op) (c (eql (find-system 'wol-tests))))
+  (operate 'load-op 'wol-tests)
+  (or (funcall (intern (symbol-name '#:do-tests)
+                      (find-package '#:wol-tests)))
+      (error "test-op failed")))
+