mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 14:19:18 +02:00
13 lines
500 B
Text
13 lines
500 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)
|
|
(import-immutable (scheme))
|
|
(import (srfi 39) (srfi 98) (chibi time) (chibi ast))
|
|
(include "test.scm"))
|