From 10bd48e4021381fe4d1599a0fd54f06566077895 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 25 Dec 2016 23:56:55 +0000 Subject: string.c: CRLF in paragraph mode * string.c (rb_str_enumerate_lines): allow CRLF to separate paragraphs. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57185 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_string.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_string.rb b/test/ruby/test_string.rb index d1da27bdb3..f2fcf3fb25 100644 --- a/test/ruby/test_string.rb +++ b/test/ruby/test_string.rb @@ -785,6 +785,11 @@ CODE assert_equal(S("hello\n\n"), res[0]) assert_equal(S("world"), res[1]) + res=[] + S("hello\r\n\r\nworld").each_line(S('')) {|x| res << x} + assert_equal(S("hello\r\n\r\n"), res[0]) + assert_equal(S("world"), res[1]) + $/ = "!" res=[] @@ -827,6 +832,11 @@ CODE assert_equal(S("hello\n"), res[0]) assert_equal(S("world"), res[1]) + res = [] + S("hello\r\n\r\nworld").each_line(S(''), chomp: true) {|x| res << x} + assert_equal(S("hello\r\n"), res[0]) + assert_equal(S("world"), res[1]) + res = [] S("hello!world").each_line(S('!'), chomp: true) {|x| res << x} assert_equal(S("hello"), res[0]) -- cgit v1.2.3