-
Notifications
You must be signed in to change notification settings - Fork 2
/
boxer-sunrise-core-test.asd
29 lines (27 loc) · 1.05 KB
/
boxer-sunrise-core-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
#|
This file is a part of boxer-sunrise project.
Copyright (c) 2019 Steven Githens ([email protected])
|#
(defsystem "boxer-sunrise-core-test"
:defsystem-depends-on ("prove-asdf")
:author "Steven Githens"
:license ""
:depends-on ("boxer-sunrise-core"
"prove")
:components ((:module "tests"
:components
((:test-file "boxer-sunrise")
(:test-file "boxdef-tests")
; (:test-file "stacks-tests")
; (:test-file "boxapp-data-tests")
; (:test-file "comdef-tests")
; (:test-file "click-handlers-tests")
; (:test-file "alternate-names-tests")
;; (:test-file "chunker-tests")
; (:test-file "vrtdef-tests")
; (:test-file "loader-tests")
; (:test-file "keydef-high-tests")
; (:test-file "gdispl-tests")
)))
:description "Test system for boxer-sunrise-core"
:perform (test-op (op c) (symbol-call :prove-asdf :run-test-system c)))