forked from fukamachi/clack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clack-test.asd
45 lines (40 loc) · 1.06 KB
/
clack-test.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
#|
This file is a part of Clack package.
URL: http://github.com/fukamachi/clack
Copyright (c) 2011 Eitarow Fukamachi <[email protected]>
Clack is freely distributable under the LLGPL License.
|#
#|
Testing Clack.
Author: Eitarow Fukamachi ([email protected])
|#
(in-package :cl-user)
(defpackage clack-test-asd
(:use :cl :asdf))
(in-package :clack-test-asd)
(defsystem clack-test
:depends-on (:clack
:cl-test-more
:bordeaux-threads
:drakma)
:components
((:module "t"
:components
((:module "core"
:components
((:file "component")
(:file "middleware")
(:file "builder")
(:file "response")
(:file "request")
(:file "handler/hunchentoot")
(:file "app/file")
(:file "app/urlmap")
(:file "middleware/static")
(:file "middleware/conditional")
(:file "middleware/session")
(:file "middleware/logger")))
(:module "util"
:components
((:file "route"))))))
:perform (load-op :after (op c) (asdf:clear-system c)))