forked from cbaggers/varjo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvarjo.tests.asd
More file actions
24 lines (23 loc) · 906 Bytes
/
varjo.tests.asd
File metadata and controls
24 lines (23 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
;;;; varjo.asd
(asdf:defsystem #:varjo.tests
:description "Tests for varjo"
:author "Chris Bagley (Baggers) <techsnuffle@gmail.com>"
:license "BSD 2 Clause"
:encoding :utf-8
:serial t
:depends-on (#:varjo #:fiveam)
:components ((:file "tests/package")
(:file "tests/tests")
(:file "tests/build-tests")
(:file "tests/external-functions")
(:file "tests/first-class-functions")
(:file "tests/flow-control")
(:file "tests/multiple-values")
(:file "tests/stemcell-tests")
(:file "tests/struct-tests")
(:file "tests/void-tests")
(:file "tests/symbol-macros")
(:file "tests/compiler-macros")
(:file "tests/regular-macros")
(:file "tests/name-shadowing")
(:file "tests/qualifier-tests")))