-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclipper-test.asd
32 lines (29 loc) · 953 Bytes
/
clipper-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 clipper project.
Copyright (c) 2015 Rudolph-Miller ([email protected])
|#
(in-package :cl-user)
(defpackage clipper-test-asd
(:use :cl :asdf))
(in-package :clipper-test-asd)
(defsystem clipper-test
:author "Rudolph-Miller"
:license "MIT"
:description "Tests of Clipper."
:depends-on (:clipper
:integral
:prove)
:components ((:module "t"
:components
((:file "init")
(:test-file "clipper")
(:test-file "config")
(:test-file "format")
(:test-file "database")
(:test-file "image")
(:test-file "local")
(:test-file "s3"))))
:defsystem-depends-on (:prove-asdf)
:perform (test-op :after (op c)
(funcall (intern #.(string :run-test-system) :prove-asdf) c)
(asdf:clear-system c)))