ruby-changes:63497
From: Kazuki <ko1@a...>
Date: Sun, 1 Nov 2020 17:47:34 +0900 (JST)
Subject: [ruby-changes:63497] e0e2492cd3 (master): Fix Rubyspec (ruby-2.7) failures
https://git.ruby-lang.org/ruby.git/commit/?id=e0e2492cd3 From e0e2492cd30eb76f084f189060de9a79d619f16e Mon Sep 17 00:00:00 2001 From: Kazuki Tsujimoto <kazuki@c...> Date: Sun, 1 Nov 2020 17:24:36 +0900 Subject: Fix Rubyspec (ruby-2.7) failures https://github.com/ruby/ruby/runs/1337845174 diff --git a/spec/ruby/command_line/dash_upper_w_spec.rb b/spec/ruby/command_line/dash_upper_w_spec.rb index 40e8fba..62c617b 100644 --- a/spec/ruby/command_line/dash_upper_w_spec.rb +++ b/spec/ruby/command_line/dash_upper_w_spec.rb @@ -31,11 +31,21 @@ ruby_version_is "2.7" do https://github.com/ruby/ruby/blob/trunk/spec/ruby/command_line/dash_upper_w_spec.rb#L31 end describe "The -W command line option with :no-experimental" do + before do + ruby_version_is ""..."3.0" do + @src = 'case 0; in a; end' + end + + ruby_version_is "3.0" do + @src = '1 => a' + end + end + it "suppresses experimental warnings" do - result = ruby_exe('1 => a', args: '2>&1') + result = ruby_exe(@src, args: '2>&1') result.should =~ /is experimental/ - result = ruby_exe('case 0; in a; end', options: '-W:no-experimental', args: '2>&1') + result = ruby_exe(@src, options: '-W:no-experimental', args: '2>&1') result.should == "" end end diff --git a/spec/ruby/core/warning/element_set_spec.rb b/spec/ruby/core/warning/element_set_spec.rb index 80a47ad..ecf75bf 100644 --- a/spec/ruby/core/warning/element_set_spec.rb +++ b/spec/ruby/core/warning/element_set_spec.rb @@ -7,9 +7,21 @@ ruby_version_is '2.7' do https://github.com/ruby/ruby/blob/trunk/spec/ruby/core/warning/element_set_spec.rb#L7 ruby_exe('Warning[:deprecated] = false; $; = ""', args: "2>&1").should == "" end - it "emits and suppresses warnings for :experimental" do - ruby_exe('Warning[:experimental] = true; eval("1 => a")', args: "2>&1").should =~ /is experimental/ - ruby_exe('Warning[:experimental] = false; eval("1 => a")', args: "2>&1").should == "" + describe ":experimental" do + before do + ruby_version_is ""..."3.0" do + @src = 'case 0; in a; end' + end + + ruby_version_is "3.0" do + @src = '1 => a' + end + end + + it "emits and suppresses warnings for :experimental" do + ruby_exe("Warning[:experimental] = true; eval('#{@src}')", args: "2>&1").should =~ /is experimental/ + ruby_exe("Warning[:experimental] = false; eval('#{@src}')", args: "2>&1").should == "" + end end it "raises for unknown category" do diff --git a/spec/ruby/language/pattern_matching_spec.rb b/spec/ruby/language/pattern_matching_spec.rb index e653b54..6eefcf5 100644 --- a/spec/ruby/language/pattern_matching_spec.rb +++ b/spec/ruby/language/pattern_matching_spec.rb @@ -38,12 +38,20 @@ ruby_version_is "2.7" do https://github.com/ruby/ruby/blob/trunk/spec/ruby/language/pattern_matching_spec.rb#L38 RUBY end - it "warns about pattern matching is experimental feature" do - -> { - eval <<~RUBY - 1 => a - RUBY - }.should complain(/warning: One-line pattern matching is experimental, and the behavior may change in future versions of Ruby!/) + describe "warning" do + before do + ruby_version_is ""..."3.0" do + @src = 'case 0; in a; end' + end + + ruby_version_is "3.0" do + @src = '1 => a' + end + end + + it "warns about pattern matching is experimental feature" do + -> { eval @src }.should complain(/pattern matching is experimental, and the behavior may change in future versions of Ruby!/i) + end end it "binds variables" do -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/