1
0
Fork 0
Browse Source

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.
unstable
Craig Oates 3 years ago
parent
commit
77952ad294
  1. 23
      ritherdon-rest.asd

23
ritherdon-rest.asd

@ -7,11 +7,12 @@
:license "MIT" :license "MIT"
:version "0.0.1" :version "0.0.1"
:serial t :serial t
:in-order-to ((test-op (test-op "ritherdon-rest/tests"))) :depends-on (:drakma
:depends-on (:drakma :cl-json) :cl-json)
:pathname "src/" :pathname "src/"
:components ((:file "package") :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 ;; The use of '...rest/tests' was because of a warning when trying to
;; run the code in SLIME. ;; run the code in SLIME.
@ -20,11 +21,13 @@
:author "craig@craigoates.net" :author "craig@craigoates.net"
:license "MIT" :license "MIT"
:version "0.0.1" :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) :perform (test-op (o s)
(uiop:symbol-call :fiveam :run! (uiop:symbol-call :ritherdon-rest-tests :test-quasi)))
'ritherdon-rest-tests:all-tests))
:components ((:module "tests"
:serial t
:components ((:file "package")
(:file "ritherdon-rest-tests")))))