mirror of
https://github.com/vale981/lack
synced 2025-03-04 08:51:41 -05:00
17 lines
515 B
Common Lisp
17 lines
515 B
Common Lisp
(in-package :cl-user)
|
|
(defpackage t-lack-middleware-static-asd
|
|
(:use :cl :asdf))
|
|
(in-package :t-lack-middleware-static-asd)
|
|
|
|
(defsystem t-lack-middleware-static
|
|
:author "Eitaro Fukamachi"
|
|
:license "LLGPL"
|
|
:depends-on (:lack
|
|
:lack-test
|
|
:prove
|
|
:alexandria)
|
|
:components ((:test-file "t/middleware/static"))
|
|
|
|
:defsystem-depends-on (:prove-asdf)
|
|
:perform (test-op :after (op c)
|
|
(funcall (intern #.(string :run-test-system) :prove-asdf) c)))
|