diff options
| author | 2025-08-04 09:31:27 -0400 | |
|---|---|---|
| committer | 2025-08-04 09:31:27 -0400 | |
| commit | 00f7fdb588888904541541d06d58f8b5b2153a45 (patch) | |
| tree | db26f7507a9fba176198740bc97761cc23643b63 /lib/conspire.sld | |
| parent | remove test dependencies from egg (diff) | |
restructure
Diffstat (limited to 'lib/conspire.sld')
| -rw-r--r-- | lib/conspire.sld | 33 |
1 files changed, 19 insertions, 14 deletions
diff --git a/lib/conspire.sld b/lib/conspire.sld index 241ad1e..8aff22a 100644 --- a/lib/conspire.sld +++ b/lib/conspire.sld @@ -22,24 +22,29 @@ (define-library (conspire) (import (scheme base) (scheme write) (scheme process-context) (srfi 225)) - (export test-set! test-update! test-update/default! - test-contains? - test-ref test-ref/default - test-set test-update/default - test-delete! - test-info - call-with-name call-as-test - default-setup-test default-after-test default-before-test - default-report-test default-setup-group default-after-group - default-before-group default-report-group default-on-exception - default-test-info-dict default-dto - modify-test-info! inspect-test-info + (export conspire-error? conspire-error-message conspire-error-irritants + ;; test info + test-info test-info? modify-test-info! inspect-test-info + ;; test accessors and setters + test-set! test-update! test-update/default! test-delete! + test-contains? test-ref test-ref/default test-set + test-update/default + call-as-test call-as-group + ;; Default test procedures + setup-name! + default-skip-test? default-before-test! default-setup-test! + default-when-test-skipped default-after-test default-report-test + default-on-exception + default-setup-group! default-before-group! + default-after-group default-report-group + default-test-info-dict default-test-info-dto + ;; SRFI-64 style assertions test-application with-test-assert test-equal test-eqv test-eq test-approximate call-as-test-error with-test-error - call-as-group test-group - with-test-group-cleanup test-skip-all + test-group + with-test-group-cleanup test-exit) (begin (define-record-type <conspire-error> |
