clem 0.4.1, ch-asdf 0.2.8, ch-util 0.2.2, lift 1.3.1, darcs ignored, smarkup 0.3.3
[CommonLispStat.git] / external / lift / lift-test.asd
blob63adf04bf0fafa6629e80dc88d27df3011a57202
1 (defpackage #:asdf-lift-test (:use #:asdf #:cl))
2 (in-package #:asdf-lift-test)
4 (defsystem lift-test
5   :author "Gary Warren King <gwking@metabang.com>"
6   :maintainer "Gary Warren King <gwking@metabang.com>"
7   :licence "MIT Style License; see file COPYING for details"
8   :description "Tests for LIsp Framework for Testing"
9   :long-description "LIFT is yet another SUnit variant. These are some self tests."
10   
11   :components ((:module "test" 
12                         :components ((:file "lift-test")
13                                      (:file "test-dynamic-variables"
14                                             :depends-on ("lift-test"))
15                                      (:file "equality-tests"
16                                             :depends-on ("lift-test"))
17                                      (:file "finding-tests"
18                                             :depends-on ("lift-test"))
19                                      #+(or)
20                                      (:file "test-prototypes" 
21                                             :depends-on ("lift-test")))))
22   
23   :depends-on (lift))
25 (defmethod operation-done-p 
26            ((o test-op)
27             (c (eql (find-system 'lift-test))))
28   (values nil))