lack/t-lack-util.asd

18 lines
438 B
Text
Raw Normal View History

2015-03-22 22:13:09 +09:00
(in-package :cl-user)
(defpackage t-lack-util-asd
(:use :cl :asdf))
(in-package :t-lack-util-asd)
(defsystem t-lack-util
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on (:lack-test
:lack-util
:prove)
:components
((:test-file "t/util"))
:defsystem-depends-on (:prove-asdf)
:perform (test-op :after (op c)
(funcall (intern #.(string :run-test-system) :prove) c)))