aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/nil
diff options
context:
space:
mode:
authorBenoit Daloze <eregontp@gmail.com>2020-02-28 19:07:17 +0100
committerBenoit Daloze <eregontp@gmail.com>2020-02-28 19:07:17 +0100
commita0f5ff4c3cd05f8717be2bf1d79f0817f288d398 (patch)
tree441f409cf816cf8a61dacdbaf204ae9f5cbe2f18 /spec/ruby/core/nil
parent5d210501825e1682e68cbfc2be424fc339f382fa (diff)
downloadruby-a0f5ff4c3cd05f8717be2bf1d79f0817f288d398.tar.gz
Update to ruby/spec@41bf282
Diffstat (limited to 'spec/ruby/core/nil')
-rw-r--r--spec/ruby/core/nil/match_spec.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/ruby/core/nil/match_spec.rb b/spec/ruby/core/nil/match_spec.rb
index 3f69312bfe..27646e9749 100644
--- a/spec/ruby/core/nil/match_spec.rb
+++ b/spec/ruby/core/nil/match_spec.rb
@@ -15,5 +15,9 @@ ruby_version_is "2.6" do
(o =~ true).should be_nil
end
end
+
+ it "should not warn" do
+ -> { nil =~ /a/ }.should_not complain(verbose: true)
+ end
end
end