From 85b8a545973b827dbce50919f3aeee1a1c9dc8e9 Mon Sep 17 00:00:00 2001 From: Sudhir Shenoy Date: Fri, 4 Aug 2017 07:05:18 +0900 Subject: [PATCH] Moved test suite to a sub-directory --- cl-dates.asd | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/cl-dates.asd b/cl-dates.asd index 670a470..ff21baf 100644 --- a/cl-dates.asd +++ b/cl-dates.asd @@ -53,11 +53,12 @@ :author "Sudhir Shenoy" :license "BSD" :depends-on (:cl-dates) - :serial t - :components ((:file "test-main") - (:file "test-dates") - (:file "test-parse-date") - (:file "test-hols"))) + :components ((:module "test" + :serial t + :components ((:file "test-main") + (:file "test-dates") + (:file "test-parse-date") + (:file "test-hols"))))) (defmethod perform ((o test-op) (c (eql (find-system :cl-dates)))) (operate 'load-op :cl-dates-test)