-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbig-ear.asd
29 lines (27 loc) · 952 Bytes
/
big-ear.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
27
28
29
(in-package #:cl-user)
(defpackage #:big-ear-asd
(:use #:cl #:asdf))
(in-package #:big-ear-asd)
(defsystem #:big-ear
:version "0.1.0"
:description "Fetch market data and store in db"
:author "Petko Tsikov <[email protected]>"
:serial t
:license ""
:depends-on (#:drakma #:cl-json #:bordeaux-threads)
:components ((:module "src"
:components
((:file "big-ear"))))
:in-order-to ((test-op (test-op big-ear-test))))
(defsystem #:big-ear-test
:description "Fetch market data and store in db test system"
:author "Petko Tsikov <[email protected]>"
:license ""
:depends-on (#:prove #:vcr)
:defsystem-depends-on (#:prove-asdf)
:serial t
:components ((:module "t"
:components
((:test-file "big-ear"))))
:perform (test-op :after (op c)
(funcall (intern #.(string :run) :prove) c)))