From 311d499f5e34c9ad65687d241f65c654393ad73b Mon Sep 17 00:00:00 2001 From: naruse Date: Fri, 5 Jan 2018 20:39:03 +0000 Subject: merge revision(s) 61513: [Backport #14257] string.c: chomp rs at the end * string.c (rb_str_enumerate_lines): should chomp record separator only, but not a newline, at the end of the receiver as well as middle, if the separator is given. [ruby-core:84552] [Bug #14257] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_5@61628 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_string.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_string.rb b/test/ruby/test_string.rb index e88746dc55..b0c6e447eb 100644 --- a/test/ruby/test_string.rb +++ b/test/ruby/test_string.rb @@ -1119,6 +1119,10 @@ CODE res = [] S("\r\n").each_line(chomp: true) {|x| res << x} assert_equal([S("")], res) + + res = [] + S("a\n b\n").each_line(" ", chomp: true) {|x| res << x} + assert_equal([S("a\n"), S("b\n")], res) end def test_lines -- cgit v1.2.3