Add cond-expand for memory streams

This commit is contained in:
Justin Ethier 2023-12-17 19:11:55 -08:00
parent 334787b6d6
commit 1d775c5a75

View file

@ -30,7 +30,9 @@
(test '() (make-list -2))
)
(test-group
(cond-expand
(memory streams
(test-group
"I/O"
(define p (open-input-string "one\ntwo\n"))
(test #\o (read-char p))
@ -42,6 +44,8 @@
(test #\t (read-char p))
(test #\w (read-char p))
(test "o" (read-line p))
)
)
)
(test-group