aboutsummaryrefslogtreecommitdiff
path: root/testiere.asd
blob: 374f2e75881506ff74117d4fcd7a701ff970fa5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;;;; testiere.asd

(asdf:defsystem #:testiere
  :description "TDD system for Common Lisp"
  :author "Colin OKeefe <colin@cicadas.surf>"
  :license  "GPLv3"
  :version "1.0.1"
  :depends-on (:trivia)
  :pathname "src/"
  :serial t
  :components ((:module "legacy"
                :serial t
                :components ((:file "package")
                             (:file "testiere")))
               (:file "package")
               (:file "testiere")
               (:file "standard-hooks")))