1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/irb] specify the VERBOSE to false and fix tests to fit

https://github.com/ruby/irb/commit/502c590925
This commit is contained in:
Nobuhiro IMAI 2021-01-23 04:45:55 +09:00 committed by git
parent e80e5a2f89
commit 69b42ae02d

View file

@ -285,6 +285,7 @@ module TestIRB
"irb_source '#{@tmpdir}/a.rb'\n",
"a\n",
])
IRB.conf[:VERBOSE] = false
IRB.conf[:PROMPT_MODE] = :SIMPLE
irb = IRB::Irb.new(IRB::WorkSpace.new, input)
IRB.conf[:MAIN_CONTEXT] = irb.context
@ -295,10 +296,8 @@ module TestIRB
assert_pattern_list([
/=> "bug17564"\n/,
/=> "bug17564"\n/,
/>> a = 'hi'\n/,
/=> "hi"\n/,
/>> \n/,
/=> nil\n/,
/ => "hi"\n/,
/ => nil\n/,
/=> "hi"\n/,
], out)
end
@ -312,6 +311,7 @@ module TestIRB
"irb_load '#{@tmpdir}/a.rb'\n",
"a\n",
])
IRB.conf[:VERBOSE] = false
IRB.conf[:PROMPT_MODE] = :SIMPLE
irb = IRB::Irb.new(IRB::WorkSpace.new, input)
IRB.conf[:MAIN_CONTEXT] = irb.context
@ -322,10 +322,8 @@ module TestIRB
assert_pattern_list([
/=> "bug17564"\n/,
/=> "bug17564"\n/,
/>> a = 'hi'\n/,
/=> "hi"\n/,
/>> \n/,
/=> nil\n/,
/ => "hi"\n/,
/ => nil\n/,
/=> "bug17564"\n/,
], out)
end