updating LIFT and keeping doc and darcs dirs.
[CommonLispStat.git] / external / lift.darcs / _darcs / pristine / lift-test.asd
blob04cadce6d1f4cbb574fe0698ecebc3c0f4841ae8
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   :components ((:module 
10                 "setup"
11                 :pathname "test/"
12                 :components ((:file "packages")
13                              (:file "lift-test"
14                                     :depends-on ("packages"))))
15                (:module 
16                 "test"
17                 :pathname "test/"
18                 :depends-on ("setup")
19                 :components ((:file "test-dynamic-variables")
20                              (:file "equality-tests")
21                              (:file "finding-tests")
22                              (:file "order-of-operations")
23                                      #+(or)
24                              (:file "test-prototypes"))))  
25   :depends-on (:lift))
27 (defmethod operation-done-p 
28            ((o test-op)
29             (c (eql (find-system 'lift-test))))
30   (values nil))