blob: 9a5b0ab10e36309fda608d6f5622a12d960e5ac6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
(asdf:defsystem xfdf-test
:description "Test suite for xfdf"
:version "0.0.1"
:license "GPL-3.0-or-later"
:author "Teddy Wing"
:depends-on (:1am
:xfdf)
:components ((:module "test"
:serial t
:components ((:file "xfdf"))))
:perform (test-op
(op system)
; (symbol-call :xfdf-test :run)
(symbol-call :1am :run)))
|