Commit 6578fec7 authored by KOBAYASHI Shuji's avatar KOBAYASHI Shuji

mirb: drop dependency on mruby-print in a test

parent 281d0ff4
......@@ -12,9 +12,9 @@ assert('regression for #1563') do
end
assert('mirb -d option') do
o, _ = Open3.capture2('bin/mirb', :stdin_data => "p $DEBUG\n")
o, _ = Open3.capture2('bin/mirb', :stdin_data => "$DEBUG\n")
assert_true o.include?('=> false')
o, _ = Open3.capture2('bin/mirb -d', :stdin_data => "p $DEBUG\n")
o, _ = Open3.capture2('bin/mirb -d', :stdin_data => "$DEBUG\n")
assert_true o.include?('=> true')
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment