;;;; ritherdon-rest.asd (asdf:defsystem #:ritherdon-rest :description "Grabs data from the Return to Ritherdon project REST API and prints out the results." :author "craig@craigoates.net" :license "MIT" :version "0.0.1" :serial t :depends-on (:drakma :cl-json) :pathname "src/" :components ((:file "package") (: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. (asdf:defsystem #:ritherdon-rest/tests :description "The test suite for the ritherdon-rest project." :author "craig@craigoates.net" :license "MIT" :version "0.0.1" :serial t :depends-on (:ritherdon-rest :fiveam :ratify) :pathname "tests/" :components ((:file "package") (:file "main")) :perform (test-op (o s) (uiop:symbol-call :ritherdon-rest-tests :test-quasi)))