summaryrefslogtreecommitdiff
path: root/test/chibi.scm
diff options
context:
space:
mode:
Diffstat (limited to 'test/chibi.scm')
-rw-r--r--test/chibi.scm11
1 files changed, 8 insertions, 3 deletions
diff --git a/test/chibi.scm b/test/chibi.scm
index 2bd9da5..7d960f2 100644
--- a/test/chibi.scm
+++ b/test/chibi.scm
@@ -1,7 +1,12 @@
(import (scheme base)
- (scheme load)
- (chibi test))
+ (except (chibi test) test-equal))
(import (zambyte meta json))
-(load "./test/run.scm")
+;-(
+(define (test-equal name expected actual)
+ (test-assert name (test-equal? expected actual)))
+
+(test-begin "chibi")
+(include "./test/run.scm")
+(test-end "chibi")