Added holidays, calendar and test-hols

This commit is contained in:
Sudhir Shenoy 2017-07-22 09:51:41 +09:00
parent 466e5b13cc
commit f6a001d5c8

View file

@ -43,7 +43,9 @@
(:file "dates") (:file "dates")
(:file "parse-date") (:file "parse-date")
(:file "print-date") (:file "print-date")
(:file "date-arith"))) (:file "date-arith")
(:file "holidays")
(:file "calendar")))
(defsystem :cl-dates-test (defsystem :cl-dates-test
:description "Date-time library tests" :description "Date-time library tests"
@ -53,7 +55,8 @@
:serial t :serial t
:components ((:file "test-main") :components ((:file "test-main")
(:file "test-dates") (:file "test-dates")
(:file "test-parse-date"))) (:file "test-parse-date")
(:file "test-hols")))
(defmethod perform ((o test-op) (c (eql (find-system :cl-dates)))) (defmethod perform ((o test-op) (c (eql (find-system :cl-dates))))
(operate 'load-op :cl-dates-test) (operate 'load-op :cl-dates-test)