diff options
-rw-r--r-- | README.org | 2 | ||||
-rw-r--r-- | src/package.lisp | 8 | ||||
-rw-r--r-- | testiere.asd | 6 |
3 files changed, 4 insertions, 12 deletions
@@ -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"))) |