2009-04-17 18:52:22 -04:00
|
|
|
IN: io.crlf.tests
|
|
|
|
USING: io.crlf tools.test io.streams.string io ;
|
|
|
|
|
2015-07-03 12:39:59 -04:00
|
|
|
{ "Hello, world." } [ "Hello, world." [ read-crlf ] with-string-reader ] unit-test
|
|
|
|
{ "Hello, world." } [ "Hello, world.\r\n" [ read-crlf ] with-string-reader ] unit-test
|
2009-04-17 18:52:22 -04:00
|
|
|
[ "Hello, world.\r" [ read-crlf ] with-string-reader ] must-fail
|
2015-07-03 12:39:59 -04:00
|
|
|
{ f } [ "" [ read-crlf ] with-string-reader ] unit-test
|
|
|
|
{ "" } [ "\r\n" [ read-crlf ] with-string-reader ] unit-test
|
2011-10-12 15:36:54 -04:00
|
|
|
|
|
|
|
[ "foo\r" [ read-?crlf ] with-string-reader ] must-fail
|
2015-07-03 12:39:59 -04:00
|
|
|
{ f } [ "" [ read-?crlf ] with-string-reader ] unit-test
|
|
|
|
{ "" } [ "\n" [ read-?crlf ] with-string-reader ] unit-test
|
|
|
|
{ "foo" } [ "foo\n" [ read-?crlf ] with-string-reader ] unit-test
|
2014-11-03 18:20:05 -05:00
|
|
|
|
2015-07-03 12:39:59 -04:00
|
|
|
{ "foo\nbar" } [ "foo\n\rbar" crlf>lf ] unit-test
|
|
|
|
{ "foo\r\nbar" } [ "foo\nbar" lf>crlf ] unit-test
|