aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2019-07-29 16:22:00 -0700
committerJeremy Evans <code@jeremyevans.net>2019-08-14 14:14:49 -0700
commit6954ff1dcb538ee6c042872088b64464a1ef6089 (patch)
tree06f6a9a26b12543b5b7a1c9b8eb87e3e79059b6d /test/ruby
parent082424ef58116db9663a754157d6c441d60fd101 (diff)
downloadruby-6954ff1dcb538ee6c042872088b64464a1ef6089.tar.gz
Make Range#=== operate like cover? instead of include? for string ranges
Previously, Range#=== treated string ranges that were not endless or beginless the same as include?, instead of the same as cover?. I think this was an oversight in 989e07c0f2fa664a54e52a475c2fcc145f06539d, as the commit message did not indicate this behavior was desired. This also makes some previously dead code no longer dead. Previously, the conditionals were doing this: if (RB_TYPE_P(beg, T_STRING) if (NIL_P(beg)) # can never be true This restructures it so at the NIL_P(beg) check, beg could possibly be nil (beginless ranges). Fixes [Bug #15449]
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_range.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/ruby/test_range.rb b/test/ruby/test_range.rb
index 699e4459be..546b1ad8ca 100644
--- a/test/ruby/test_range.rb
+++ b/test/ruby/test_range.rb
@@ -528,6 +528,14 @@ class TestRange < Test::Unit::TestCase
assert_not_operator(5..nil, :===, 0)
end
+ def test_eqq_string
+ assert_operator('A'..'Z', :===, 'ANA')
+ assert_not_operator('A'..'Z', :===, 'ana')
+ assert_operator('A'.., :===, 'ANA')
+ assert_operator(..'Z', :===, 'ANA')
+ assert_operator(nil..nil, :===, 'ANA')
+ end
+
def test_eqq_time
bug11113 = '[ruby-core:69052] [Bug #11113]'
t = Time.now