blob: 37038232fdde8eded6f7e600a6890ec651d6eb8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
;;;; testiere.asd
(asdf:defsystem #:testiere
:description "TDD system for Common Lisp"
:author "Colin OKeefe <colin@cicadas.surf>"
:license "GPLv3"
:version "1.3.0"
:depends-on (:trivia)
:pathname "src/"
:serial t
:components ((:file "package")
(:file "testiere")
(:file "standard-hooks")))
|