Create README.md
[trivial-shell.git] / trivial-shell-test.asd
blob789a96d996f515745af67bdf8517e3fde7ef1719
1 #|
2 Author: Gary King
4 See file COPYING for details
5 |#
7 (defsystem "trivial-shell-test"
8   :author "Gary Warren King <gwking@metabang.com>"
9   :maintainer "Gary Warren King <gwking@metabang.com>"
10   :licence "MIT Style License"
11   :description "Tests for trivial-shell"
12   :components ((:module
13                 "setup"
14                 :pathname "tests/"
15                 :components
16                 ((:file "package")
17                  (:file "tests" :depends-on ("package"))))
18                (:module
19                 "tests"
20                 :depends-on ("setup")
21                 :components ((:file "test-timeout"))))
22   :depends-on ("lift" "trivial-shell")
23   :perform (test-op (o c) (symbol-call :lift '#:run-tests) :config :generic))