blob: 0423edba171367e4b470c2d8cd62d113456d17d5 (
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
|
(defsystem "oneliners.api"
:version "0.1.0"
:author "Colin Okay"
:license "AGPLv3"
:depends-on ("lazybones-hunchentoot"
"lazybones-client"
"bknr.datastore"
"jonathan"
"ironclad"
"uuid"
"lambda-riffs")
:components ((:module "src"
:components
((:file "package")
(:file "util")
(:file "main"))))
:description ""
:in-order-to ((test-op (test-op "oneliners.api/tests"))))
(defsystem "oneliners.api/tests"
:author "Colin Okay"
:license "AGPLv3"
:depends-on ("oneliners.api"
"rove")
:components ((:module "tests"
:components
((:file "main"))))
:description "Test system for oneliners.api"
:perform (test-op (op c) (symbol-call :rove :run c)))
|