blob: ad69fa174547bd8552b72234e9221f9a2962065a (
plain)
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
|
(asdf:defsystem "lizfcm"
:version "0.1.0"
:author "Elizabeth Hunt"
:license "MIT"
:components ((:module "src"
:components
((:module "utils"
:components
((:file "within-range" :depends-on ("package"))
(:file "table" :depends-on ("package"))
(:file "package")))
(:module "approx"
:components
((:file "derivative" :depends-on ("package"))
(:file "package")))))))
(asdf:defsystem "lizfcm/tests"
:author "Elizabeth Hunt"
:license "MIT"
:depends-on (:fiveam
:lizfcm)
:components ((:module "tests"
:components
((:file "table" :depends-on ("suite"))
(:file "approx" :depends-on ("suite"))
(:file "suite"))))
:perform (asdf:test-op (o c) (uiop:symbol-call
:fiveam :run!
(uiop:find-symbol* :lizfcm-test-suite :lizfcm/tests))))
|