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 (:cl-fad)
: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 (:stefil
:local-time)
:perform (test-op (o s) (uiop:symbol-call '#:stefil
'#:funcall-test-with-feedback-message
(uiop:find-symbol* '#:test '#:local-time.test)))
:components ((:module "test"
:serial t
:components ((:file "package")
(:file "simple")
(:file "comparison")
(:file "formatting")
(:file "parsing")
(:file "timezone")))))
|