From 7406d7cffaef9664c32904ee9670d2fd5948efc8 Mon Sep 17 00:00:00 2001 From: stomar Date: Sun, 21 May 2017 19:31:37 +0000 Subject: String#casecmp no longer raises TypeError * See https://bugs.ruby-lang.org/issues/13312 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58839 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- spec/rubyspec/core/string/casecmp_spec.rb | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'spec') diff --git a/spec/rubyspec/core/string/casecmp_spec.rb b/spec/rubyspec/core/string/casecmp_spec.rb index 6bfb66e039..fdb888ff2b 100644 --- a/spec/rubyspec/core/string/casecmp_spec.rb +++ b/spec/rubyspec/core/string/casecmp_spec.rb @@ -25,8 +25,16 @@ describe "String#casecmp independent of case" do "abc".casecmp(other).should == 0 end - it "raises a TypeError if other can't be converted to a string" do - lambda { "abc".casecmp(mock('abc')) }.should raise_error(TypeError) + ruby_version_is ""..."2.5" do + it "raises a TypeError if other can't be converted to a string" do + lambda { "abc".casecmp(mock('abc')) }.should raise_error(TypeError) + end + end + + ruby_version_is "2.5" do + it "returns nil if other can't be converted to a string" do + "abc".casecmp(mock('abc')).should be_nil + end end describe "in UTF-8 mode" do -- cgit v1.2.3