Revert "Update README.md"
[lift.git] / lift-test.asd
bloba2035cf8f51cd49d1788008331d898fac49631a7
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 "utilities"
14                                     :depends-on ("packages"))
15                              (:file "lift-test"
16                                     :depends-on ("packages"))))
17                (:module 
18                 "test"
19                 :pathname "test/"
20                 :depends-on ("setup")
21                 :components ((:file "test-dynamic-variables")
22                              (:file "equality-tests")
23                              (:file "testsuite-expects")
24                              (:file "finding-tests")
25                              (:file "order-of-operations")
26                              (:file "test-config-files")
27                              (:file "test-maximum-problems")
28                              (:file "test-skipping")
29                              (:file "test-conditions")
30                              #+(or)
31                              (:file "test-prototypes"))))  
32   :depends-on (:lift))
34 (defmethod operation-done-p 
35            ((o test-op)
36             (c (eql (find-system 'lift-test))))
37   (values nil))