summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-10-28 16:32:36 +0900
committergit <svn-admin@ruby-lang.org>2022-10-28 08:29:37 +0000
commit7440fc3eb4ee6409f2204523c8c9875d8e80a208 (patch)
tree28c9337f967ecd91b6a2700dc7f3b2308246c3b3
parente6e202234c0f5d9755cf2aa88b178371fd8b38e4 (diff)
[ruby/irb] Suppress "switching inspect mode" messages
https://github.com/ruby/irb/commit/565eeb3c19
-rw-r--r--test/irb/test_cmd.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/irb/test_cmd.rb b/test/irb/test_cmd.rb
index 1739bc293d..e330aa3a44 100644
--- a/test/irb/test_cmd.rb
+++ b/test/irb/test_cmd.rb
@@ -415,6 +415,7 @@ module TestIRB
"\n",
])
IRB.conf[:PROMPT_MODE] = :SIMPLE
+ IRB.conf[:VERBOSE] = false
irb = IRB::Irb.new(IRB::WorkSpace.new(self), input)
out, _ = capture_output do
irb.eval_input
@@ -436,6 +437,7 @@ module TestIRB
"\n",
])
IRB.conf[:PROMPT_MODE] = :SIMPLE
+ IRB.conf[:VERBOSE] = false
irb = IRB::Irb.new(IRB::WorkSpace.new(self), input)
out, _ = capture_output do
IRB::TestHelper.without_rdoc do