From 77952ad2945ee6d4a8a49765d8eff80a153e051f Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Fri, 2 Jul 2021 00:40:35 +0100 Subject: [PATCH] ASDF package definition changes. The changes here are done out of frustration and desperation. SLIME was in a right mess (caching issue I assume) so I started changing things in here to try and fix it. This was before I stumbled on the 'restart Emacs/SLIIME' solution. Becuase it's now working, I've just kept the changes in place. The relief of getting 'asdf:test-system' working after about two hours of faffing was enough for me to not touch this file again. I might come back to this at a later date -- see if/how it needs cleaning up. I might just skip it and start a new project -- this is a learning exercise after all. --- ritherdon-rest.asd | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/ritherdon-rest.asd b/ritherdon-rest.asd index ea34390..20579a5 100644 --- a/ritherdon-rest.asd +++ b/ritherdon-rest.asd @@ -7,11 +7,12 @@ :license "MIT" :version "0.0.1" :serial t - :in-order-to ((test-op (test-op "ritherdon-rest/tests"))) - :depends-on (:drakma :cl-json) + :depends-on (:drakma + :cl-json) :pathname "src/" :components ((:file "package") - (:file "ritherdon-rest"))) + (:file "ritherdon-rest")) + :in-order-to ((test-op (test-op :ritherdon-rest/tests)))) ;; The use of '...rest/tests' was because of a warning when trying to ;; run the code in SLIME. @@ -20,11 +21,13 @@ :author "craig@craigoates.net" :license "MIT" :version "0.0.1" - :depends-on (:ritherdon-rest :fiveam) + :serial t + :depends-on (:ritherdon-rest + :fiveam) + :pathname "tests/" + :components ((:file "package") + (:file "main")) :perform (test-op (o s) - (uiop:symbol-call :fiveam :run! - 'ritherdon-rest-tests:all-tests)) - :components ((:module "tests" - :serial t - :components ((:file "package") - (:file "ritherdon-rest-tests"))))) + (uiop:symbol-call :ritherdon-rest-tests :test-quasi))) + +