aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcolin <colin@cicadas.surf>2024-04-19 07:22:03 -0700
committercolin <colin@cicadas.surf>2024-04-19 07:22:03 -0700
commit7adc21d1565e575a80c56dc61e7f119a6cde6e12 (patch)
treec2dbf5031dd322d1268f96e947718e3924619203
parent29e4729d30b6b06881443b009589c0b87079631a (diff)
Remove: legacy testiere
-rw-r--r--README.org2
-rw-r--r--src/package.lisp8
-rw-r--r--testiere.asd6
3 files changed, 4 insertions, 12 deletions
diff --git a/README.org b/README.org
index b05cf0d..828654c 100644
--- a/README.org
+++ b/README.org
@@ -237,7 +237,7 @@ tests that aren't part of the package you're testing."
(:is (not (typep "foo" 'optional-int))))
'(or integer null))
#+end_src
-*** Running Test Suites
+** Running Test Suites
The above also defines a test suite for the forms defined in the
~:testiere.examples~ package.
diff --git a/src/package.lisp b/src/package.lisp
index bbeb7d4..ce58b63 100644
--- a/src/package.lisp
+++ b/src/package.lisp
@@ -1,17 +1,13 @@
;;;; package.lisp
(defpackage #:testiere
- (:use #:cl #:testiere.legacy)
+ (:use #:cl)
(:import-from #:trivia #:ematch)
(:export
#:on
#:off
#:register-hook
- #:run-suites
- ;; legacy
- #:defun/t
- #:with-stub
- #:with-stubs))
+ #:run-suites))
diff --git a/testiere.asd b/testiere.asd
index e481ad2..e47c0fb 100644
--- a/testiere.asd
+++ b/testiere.asd
@@ -8,10 +8,6 @@
:depends-on (:trivia)
:pathname "src/"
:serial t
- :components ((:module "legacy"
- :serial t
- :components ((:file "package")
- (:file "testiere")))
- (:file "package")
+ :components ((:file "package")
(:file "testiere")
(:file "standard-hooks")))