blob: 5c020525c555873302f18499170d3e2da0df3585 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
(cond-expand
(chicken-5 (import r7rs (srfi 64))
(load "../lib/tests/hascheme/base.sld"))
(chibi (import (chibi test)))
(else (import (srfi 64))))
(cond-expand
(chicken-5 (test-runner-current (test-runner-create)))
(else))
(import (tests hascheme base))
(test-group "base" (test-base))
|