blob: 8e0b682e04a3c1a6073c8d6edb754a7a2f8ef98e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
;;;; testiere.asd
(asdf:defsystem #:testiere
:description "Up Front Testing for DEFUN and DEFMETHOD"
:author "Colin Okay <okay@toyful.space>"
:license "GPLv3"
:version "0.0.1"
:depends-on (:trivia)
:serial t
:components ((:file "package")
(:file "testiere")))
|