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

use one-line pattern matching for warning tests

This commit is contained in:
Koichi Sasada 2020-11-01 13:55:54 +09:00
parent b1e7c3a31f
commit 0e33028d69
3 changed files with 5 additions and 7 deletions

View file

@ -32,7 +32,7 @@ ruby_version_is "2.7" do
describe "The -W command line option with :no-experimental" do
it "suppresses experimental warnings" do
result = ruby_exe('case 0; in a; end', args: '2>&1')
result = ruby_exe('1 => a', args: '2>&1')
result.should =~ /is experimental/
result = ruby_exe('case 0; in a; end', options: '-W:no-experimental', args: '2>&1')