forked from incjung/cl-maprcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cl-maprcli.asd
26 lines (24 loc) · 915 Bytes
/
cl-maprcli.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
;;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-lisp; Package: CL-USER -*-
(asdf:defsystem "cl-maprcli"
:description "MapR control system API"
:author "Inchul <[email protected]>"
:license "BSD"
:serial t
:depends-on ("cl-json"
"drakma")
:in-order-to ((test-op (test-op "cl-maprcli/tests")))
:components ((:file "package")
(:file "cl-maprcli")
(:file "mapr-api")))
(asdf:defsystem "cl-maprcli/tests"
:description "test cl-maprcli"
:author "Inchul <[email protected]>"
:depends-on ("fiveam"
"cl-maprcli")
:components ((:module "tests"
:serial t
:components ((:file "test-package")
(:file "main"))))
:perform (asdf:test-op (o s)
(uiop:symbol-call :fiveam '#:run!
(uiop:find-symbol* :all-tests :maprcli-tests))))