-
Notifications
You must be signed in to change notification settings - Fork 43
/
local-time.asd
29 lines (28 loc) · 1.21 KB
/
local-time.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
(defsystem "local-time"
:version "1.0.6"
:license "BSD"
:author "Daniel Lowe <dlowe@dlowe.net>"
:description "A library for manipulating dates and times, based on a paper by Erik Naggum"
:depends-on (:uiop)
:in-order-to ((test-op (test-op "local-time/test")))
:components ((:module "src"
:serial t
:components ((:file "package")
(:file "local-time")))))
(defsystem "local-time/test"
:version "1.0.6"
:author "Daniel Lowe <dlowe@dlowe.net>"
:description "Testing code for the local-time library"
:depends-on (:fiasco :local-time)
:perform (test-op (o s) (uiop:symbol-call '#:fiasco
'#:run-package-tests
:package
(find-package '#:local-time.test)))
:components ((:module "test"
:serial t
:components ((:file "package")
(:file "simple")
(:file "comparison")
(:file "formatting")
(:file "parsing")
(:file "timezone")))))