aboutsummaryrefslogtreecommitdiff
path: root/oneliners.api.asd
blob: 3a6b48f1e652d29e27f257069ec788ffaa72d171 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(defsystem "oneliners.api"
  :version "0.1.0"
  :author "Colin Okay"
  :license "AGPLv3"
  :depends-on ("lazybones-hunchentoot"
               "bknr.datastore"
               "jonathan")
  :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)))