-
Notifications
You must be signed in to change notification settings - Fork 4
/
dyna-test.asd
32 lines (29 loc) · 945 Bytes
/
dyna-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 dyna project.
Copyright (c) 2015 Rudolph-Miller (chopsticks.tk.ppfm@gmail.com)
|#
(in-package :cl-user)
(defpackage dyna-test-asd
(:use :cl :asdf))
(in-package :dyna-test-asd)
(defsystem dyna-test
:author "Rudolph-Miller"
:license "MIT"
:description "Tests of Dyna."
:depends-on (:dyna
:prove
:local-time)
:components ((:module "t"
:components
((:file "init")
(:test-file "dyna")
(:test-file "request")
(:test-file "fetch")
(:test-file "content")
(:test-file "table")
(:test-file "sxql")
(:test-file "table-operation"))))
:defsystem-depends-on (:prove-asdf)
:perform (test-op :after (op c)
(funcall (intern #.(string :run-test-system) :prove-asdf) c)
(asdf:clear-system c)))