dotfiles/sbcl/.quicklisp/dists/quicklisp/software/prove-20171130-git/prove-test.asd
2020-02-24 20:27:04 -05:00

15 lines
462 B
Common Lisp

(defsystem "prove-test"
:author "Eitaro Fukamachi"
:license "MIT"
:depends-on (:split-sequence
:alexandria
:prove)
:components ((:module "t"
:serial t
:components
((:file "utils")
(:test-file "prove"))))
:description "Test system for Prove."
:defsystem-depends-on ("prove-asdf")
:perform (test-op (o c) (symbol-call :prove-asdf :run-test-system c)))