-
Notifications
You must be signed in to change notification settings - Fork 3
/
qi-test.asd
30 lines (27 loc) · 984 Bytes
/
qi-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 qi project.
Copyright (c) 2015 Cody Reichert ([email protected])
|#
(in-package :cl-user)
(defpackage qi-test-asd
(:use :cl :asdf))
(in-package :qi-test-asd)
(defsystem qi-test
:author "Cody Reichert"
:license ""
:depends-on (:qi
:uiop
:prove)
:components ((:module "t"
:components (
(:test-file "integrations_test")
(:test-file "manifest_test")
(:test-file "packages_test")
(:test-file "util_test")
(:test-file "qi_test")
)))
:description "Test system for qi"
:defsystem-depends-on (:prove-asdf)
:perform (test-op :after (op c)
(funcall (intern #.(string :run-test-system) :prove-asdf) c)
(asdf:clear-system c)))