12 lines
349 B
Common Lisp
12 lines
349 B
Common Lisp
(defsystem "www-test"
|
|
:defsystem-depends-on ("prove-asdf")
|
|
:author "zongor"
|
|
:license ""
|
|
:depends-on ("www"
|
|
"prove")
|
|
:components ((:module "tests"
|
|
:components
|
|
((:test-file "www"))))
|
|
:description "Test system for www"
|
|
:perform (test-op (op c) (symbol-call :prove-asdf :run-test-system c)))
|