Skip to content

Commit

Permalink
Issue #537 - Add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
justinethier committed May 22, 2024
1 parent 6b556d3 commit 65fa16c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/base.scm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

(import
(scheme base)
(scheme eval)
(scheme inexact)
(cyclone test))

Expand All @@ -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
Expand Down

0 comments on commit 65fa16c

Please sign in to comment.