-
Notifications
You must be signed in to change notification settings - Fork 2
/
web4r-tests.asd
28 lines (25 loc) · 939 Bytes
/
web4r-tests.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
(in-package :cl-user)
(defpackage :web4r-tests-asd (:use :cl :asdf))
(in-package :web4r-tests-asd)
(defsystem :web4r-tests
:name "web4r-tests"
:author "Tomoyuki Matsumoto <tomoyuki28jp@gmail.com>"
:licence "BSD"
:description "tests for web4r"
:depends-on (:web4r :fiveam :drakma)
:components ((:module "tests"
:serial t
:components
((:file "package")
(:file "util")
(:file "debug")
(:file "cont")
(:file "server")
(:file "valid")
(:file "pager")
(:file "pclass")
(:file "pages")
(:file "user")
(:file "image")
(:file "http")
))))