Merge pull request #276 from omasanori/parameterize
Refactor t/parameterize.scm with (picrin test).
This commit is contained in:
commit
fd677f1f4a
|
@ -1,12 +1,15 @@
|
|||
(import (scheme base)
|
||||
(scheme write))
|
||||
(picrin test))
|
||||
|
||||
; expects "piece by piece by piece.\n"
|
||||
(write
|
||||
(parameterize
|
||||
((current-output-port (open-output-string)))
|
||||
(display "piece")
|
||||
(display " by piece ")
|
||||
(display "by piece.")
|
||||
(newline)
|
||||
(get-output-string)))
|
||||
(test-begin)
|
||||
|
||||
(test "piece by piece by piece.\n"
|
||||
(parameterize
|
||||
((current-output-port (open-output-string)))
|
||||
(display "piece")
|
||||
(display " by piece ")
|
||||
(display "by piece.")
|
||||
(newline)
|
||||
(get-output-string)))
|
||||
|
||||
(test-end)
|
||||
|
|
Loading…
Reference in New Issue