From 4a7c767ed2ab40c8bc56b9ff0c3d5bb8ee64ea3a Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 2 Dec 2016 06:12:56 +0000 Subject: [PATCH] test/ruby/test_string.rb: ensure restoring $/ git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56965 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_string.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/ruby/test_string.rb b/test/ruby/test_string.rb index 90f48e4f08..433f7743c4 100644 --- a/test/ruby/test_string.rb +++ b/test/ruby/test_string.rb @@ -381,6 +381,8 @@ CODE $/ = save assert_equal(S("a").hash, S("a\u0101").chomp(S("\u0101")).hash, '[ruby-core:22414]') + ensure + $/ = save end def test_chomp! @@ -437,6 +439,8 @@ CODE assert_equal("foo\r", s) assert_equal(S("a").hash, S("a\u0101").chomp!(S("\u0101")).hash, '[ruby-core:22414]') + ensure + $/ = save end def test_chop @@ -665,6 +669,7 @@ CODE S("hello!world").lines.each {|x| res << x} assert_equal(S("hello!"), res[0]) assert_equal(S("world"), res[1]) + ensure $/ = save end @@ -807,6 +812,8 @@ CODE assert_nothing_raised(bug7646) do "\n\u0100".each_line("\n") {} end + ensure + $/ = save end def test_lines