forked from fukamachi/fast-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfast-http-test.asd
30 lines (27 loc) · 998 Bytes
/
fast-http-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
#|
This file is a part of fast-http project.
URL: http://github.com/fukamachi/fast-http
Copyright (c) 2014 Eitaro Fukamachi <[email protected]>
|#
(in-package :cl-user)
(defpackage fast-http-test-asd
(:use :cl :asdf))
(in-package :fast-http-test-asd)
(defsystem fast-http-test
:depends-on (:fast-http
:babel
:cl-syntax-interpol
:xsubseq
:prove)
:components ((:module "t"
:components
((:test-file "parser" :depends-on ("test-utils"))
(:test-file "fast-http" :depends-on ("test-utils"))
(:test-file "multipart-parser" :depends-on ("test-utils"))
(:test-file "util")
(:file "test-utils")
(:file "benchmark"))))
:defsystem-depends-on (:prove-asdf)
:perform (test-op :after (op c)
(funcall (intern #.(string :run-test-system) :prove.asdf) c)
(asdf:clear-system c)))