diff --git a/ritherdon-rest.asd b/ritherdon-rest.asd index 20579a5..d789c89 100644 --- a/ritherdon-rest.asd +++ b/ritherdon-rest.asd @@ -23,7 +23,8 @@ :version "0.0.1" :serial t :depends-on (:ritherdon-rest - :fiveam) + :fiveam + :ratify) :pathname "tests/" :components ((:file "package") (:file "main")) diff --git a/tests/package.lisp b/tests/package.lisp index da1a28a..08b4fcc 100644 --- a/tests/package.lisp +++ b/tests/package.lisp @@ -1,7 +1,9 @@ ;;;; tests/package.lisp (defpackage #:ritherdon-rest-tests - (:use #:cl #:fiveam) + (:use #:cl + #:fiveam + #:ratify) (:export #:run! #:all-tests #:test-quasi))