From f6a001d5c80a54e696835f0a03e3bcf7647285ef Mon Sep 17 00:00:00 2001 From: Sudhir Shenoy Date: Sat, 22 Jul 2017 09:51:41 +0900 Subject: [PATCH] Added holidays, calendar and test-hols --- cl-dates.asd | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/cl-dates.asd b/cl-dates.asd index bf46495..1d51ed1 100644 --- a/cl-dates.asd +++ b/cl-dates.asd @@ -43,7 +43,9 @@ (:file "dates") (:file "parse-date") (:file "print-date") - (:file "date-arith"))) + (:file "date-arith") + (:file "holidays") + (:file "calendar"))) (defsystem :cl-dates-test :description "Date-time library tests" @@ -53,7 +55,8 @@ :serial t :components ((:file "test-main") (: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)))) (operate 'load-op :cl-dates-test)