(defsystem "mcias-client" :version "0.1.0" :author "Kyle Isom" :description "Common Lisp client for the MCIAS identity and access management API" :license "MIT" :depends-on ("dexador" "yason" "cl-ppcre" "alexandria") :components ((:file "package") (:file "conditions" :depends-on ("package")) (:file "client" :depends-on ("package" "conditions"))) :in-order-to ((test-op (test-op "mcias-client/tests")))) (defsystem "mcias-client/tests" :version "0.1.0" :description "Tests for mcias-client" :depends-on ("mcias-client" "fiveam" "hunchentoot" "babel") :components ((:file "tests/package") (:file "tests/mock-server" :depends-on ("tests/package")) (:file "tests/client-tests" :depends-on ("tests/package" "tests/mock-server"))) :perform (test-op (op c) (uiop:symbol-call :mcias-client-tests :run-all-tests)))