cyclone/tests/srfi-28-tests.scm
2019-06-19 18:29:42 -04:00

13 lines
266 B
Scheme

(import
(scheme base)
(srfi 28)
(cyclone test))
(test-group
"format"
(test "Hello, World!" (format "Hello, ~a" "World!"))
(test "Error, list is too short: (one \"two\" 3)
"
(format "Error, list is too short: ~s~%" '(one "two" 3))))
(test-exit)