mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-18 21:29:18 +02:00
13 lines
266 B
Scheme
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)
|