Issue #537 - Add tests

This commit is contained in:
Justin Ethier 2024-05-21 18:58:49 -07:00
parent 6b556d3a7a
commit 65fa16cce7

View file

@ -9,6 +9,7 @@
(import
(scheme base)
(scheme eval)
(scheme inexact)
(cyclone test))
@ -31,6 +32,12 @@
(test '() (make-list -2))
)
(test-group
"apply"
(test '(5 1 2) (eval '(apply cons '(5 (1 2)))))
(test '(5 1 2) (apply cons '(5 (1 2))))
)
(cond-expand
(memory streams
(test-group