aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core')
-rw-r--r--spec/ruby/core/string/split_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/ruby/core/string/split_spec.rb b/spec/ruby/core/string/split_spec.rb
index 0c82ef8c58..7d5a591790 100644
--- a/spec/ruby/core/string/split_spec.rb
+++ b/spec/ruby/core/string/split_spec.rb
@@ -66,6 +66,8 @@ describe "String#split with String" do
it "defaults to $; when string isn't given or nil" do
begin
+ verbose = $VERBOSE
+ $VERBOSE = nil
old_fs = $;
[",", ":", "", "XY", nil].each do |fs|
@@ -84,6 +86,7 @@ describe "String#split with String" do
end
ensure
$; = old_fs
+ $VERBOSE = verbose
end
end
@@ -239,6 +242,8 @@ describe "String#split with Regexp" do
it "defaults to $; when regexp isn't given or nil" do
begin
+ verbose = $VERBOSE
+ $VERBOSE = nil
old_fs = $;
[/,/, /:/, //, /XY/, /./].each do |fs|
@@ -257,6 +262,7 @@ describe "String#split with Regexp" do
end
ensure
$; = old_fs
+ $VERBOSE = verbose
end
end