-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-warflagger.asd
30 lines (26 loc) · 1.02 KB
/
test-warflagger.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
;;;; test-warflagger.asd
(asdf:defsystem #:test-warflagger
:description "Test suite for warflagger functionality."
:author "Ben McGunigle <[email protected]>"
:license "Apache License, version 2.0"
:depends-on (#:warflagger
#:alexandria
#:gadgets
#:fiveam
#:liql
#:wf-web
#:ci-utils)
:serial t
:components ((:module :t
:serial t
:components ((:file "package")
(:file "tests")
(:file "textract-test")
(:file "db-test")
(:file "opinml-test")
(:file "services-test")
(:file "form-validator-test")
(:file "auth-test"))))
:perform (test-op (o s)
(uiop:symbol-call :fiveam :run!
(intern "TEST-WARFLAGGER" (find-package :test-warflagger)))))