aboutsummaryrefslogtreecommitdiff
path: root/testiere.asd
diff options
context:
space:
mode:
authorcolin <colin@cicadas.surf>2023-09-09 11:09:10 -0700
committercolin <colin@cicadas.surf>2023-09-09 13:59:36 -0700
commit4025722943ae814c88da1fa8fe5778cffecce4ad (patch)
tree12ca12b13dc53913eab33d61e5c7eeea946699e0 /testiere.asd
parent1bb8d1f8826e21314aae0a96dc25d088afad36f5 (diff)
Testiere2
Add examples changed some internal names; improved some error messages Added more examples renaming exports Added New Readme
Diffstat (limited to 'testiere.asd')
-rw-r--r--testiere.asd16
1 files changed, 11 insertions, 5 deletions
diff --git a/testiere.asd b/testiere.asd
index 3db3701..147b556 100644
--- a/testiere.asd
+++ b/testiere.asd
@@ -1,11 +1,17 @@
;;;; testiere.asd
(asdf:defsystem #:testiere
- :description "Interactive Testing for DEFUN"
- :author "Colin Okay <colin@cicadas.surf>"
+ :description "TDD system for Common Lisp"
+ :author "Colin OKeefe <colin@cicadas.surf>"
:license "GPLv3"
- :version "0.1.0"
+ :version "1.0.0"
:depends-on (:trivia)
+ :pathname "src/"
:serial t
- :components ((:file "package")
- (:file "testiere")))
+ :components ((:module "legacy"
+ :serial t
+ :components ((:file "package")
+ (:file "testiere")))
+ (:file "package")
+ (:file "testiere")
+ (:file "standard-hooks")))