chibi-scheme/lib/chibi/test.module
Alex Shinn 10359721c4 Allowing read/write of simple object types (e.g. anything defined with define-record-type)
using a {brace} syntax.  Currently can't disambiguate different types with the same name -
need to introduce a universal id.
2011-08-28 17:49:20 +09:00

13 lines
537 B
Text

(module (chibi test)
(export
test test-error test-assert test-not test-values
test-group current-test-group
test-begin test-end ;; test-syntax-error ;; test-info
;; test-vars test-run ;; test-exit
current-test-verbosity current-test-epsilon current-test-comparator
current-test-applier current-test-handler current-test-skipper
current-test-group-reporter test-failure-count
current-test-epsilon current-test-comparator)
(import (scheme) (srfi 39) (srfi 98) (chibi time) (chibi ast))
(include "test.scm"))