From 7adc21d1565e575a80c56dc61e7f119a6cde6e12 Mon Sep 17 00:00:00 2001 From: colin Date: Fri, 19 Apr 2024 07:22:03 -0700 Subject: Remove: legacy testiere --- README.org | 2 +- src/package.lisp | 8 ++------ testiere.asd | 6 +----- 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"))) -- cgit v1.2.3