notes and paren matching.
[CommonLispStat.git] / external / lift.darcs / lift-test.asd
blobfc279ea141eb073f43550d7890d9692e925e3d32
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 "testsuite-expects")
22                              (:file "finding-tests")
23                              (:file "order-of-operations")
24                                      #+(or)
25                              (:file "test-prototypes"))))  
26   :depends-on (:lift))
28 (defmethod operation-done-p 
29            ((o test-op)
30             (c (eql (find-system 'lift-test))))
31   (values nil))