mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
Issue #537 - Add tests
This commit is contained in:
parent
6b556d3a7a
commit
65fa16cce7
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue