forked from fukamachi/clack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patht-clack.asd
51 lines (45 loc) · 1.31 KB
/
t-clack.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#|
This file is a part of Clack package.
URL: http://github.com/fukamachi/clack
Copyright (c) 2011 Eitaro Fukamachi <[email protected]>
Clack is freely distributable under the LLGPL License.
|#
#|
Testing Clack.
Author: Eitaro Fukamachi ([email protected])
|#
(in-package :cl-user)
(defpackage t-clack-asd
(:use :cl :asdf))
(in-package :t-clack-asd)
(defsystem t-clack
:depends-on (:clack
:clack-test
:cl-test-more
:bordeaux-threads
:drakma)
:components
((:module "t"
:components
((:module "core"
:components
((:test-file "component")
(:test-file "middleware")
(:test-file "builder")
(:test-file "response")
(:test-file "request")
(:test-file "handler/hunchentoot")
(:test-file "handler/toot")
(:test-file "app/file")
(:test-file "app/urlmap")
(:test-file "middleware/static")
(:test-file "middleware/conditional")
(:test-file "middleware/session")
(:test-file "middleware/logger")))
(:module "util"
:components
((:test-file "route"))))))
:defsystem-depends-on (:cl-test-more)
:perform (test-op :after (op c)
(funcall (intern #. (string :run-test-system) :cl-test-more)
c)))