aboutsummaryrefslogtreecommitdiff
path: root/oneliners.api.asd
blob: 20911367912319ac1589a6b0b2c9754fc2a3561d (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
(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 "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)))