From 0b17e637d3791d1ca94558429f9deba3a5876166 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Tue, 14 Feb 2023 20:33:23 -0500 Subject: Use assoc symbols for keys instead of strings for objects. Update the test suite to be more compatible with SRFI 64. --- test/chibi.scm | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'test/chibi.scm') 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") -- cgit