summaryrefslogtreecommitdiff
path: root/test/irb/test_context.rb
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-21 05:48:35 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-21 05:48:35 +0000
commit7f09b5e9da8f83f84c5b6ae7a644a562811fec73 (patch)
tree5ba2b326ee620da9374d2b954ddd464c390909bd /test/irb/test_context.rb
parentd3df725f9efeb0e6c121f9a1316abaa90956f1b8 (diff)
downloadruby-7f09b5e9da8f83f84c5b6ae7a644a562811fec73.tar.gz
suppress warning in test/irb
https://rubyci.org/logs/rubyci.s3.amazonaws.com/centos7/ruby-trunk/log/20190421T040003Z.fail.html.gz git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67678 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/irb/test_context.rb')
-rw-r--r--test/irb/test_context.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/irb/test_context.rb b/test/irb/test_context.rb
index fa2432b3f3..469599c11b 100644
--- a/test/irb/test_context.rb
+++ b/test/irb/test_context.rb
@@ -55,6 +55,7 @@ module TestIRB
end
def test_eval_input
+ verbose, $VERBOSE = $VERBOSE, nil
input = TestInputMethod.new([
"raise 'Foo'\n",
"_\n",
@@ -71,6 +72,8 @@ module TestIRB
:*, /0$/,
:*, /0$/,
/\s*/], out)
+ ensure
+ $VERBOSE = verbose
end
end
end