forked from fukamachi/clack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclack-test.asd
32 lines (27 loc) · 825 Bytes
/
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
#|
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.
|#
#|
Clack.Test - Testing Clack Applications.
Author: Eitaro Fukamachi ([email protected])
|#
(in-package :cl-user)
(defpackage clack-test-asd
(:use :cl :asdf))
(in-package :clack-test-asd)
(defsystem clack-test
:version "0.1.2"
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on (:clack
:cl-syntax
:cl-syntax-annot
:cl-test-more
:flexi-streams
:drakma)
:components ((:file "src/contrib/test")
(:file "src/contrib/test/suite" :depends-on ("src/contrib/test")))
:description "Testing Clack Applications.")