diff options
| author | Jeremy Evans <code@jeremyevans.net> | 2020-09-01 09:19:03 -0700 |
|---|---|---|
| committer | Jeremy Evans <code@jeremyevans.net> | 2020-09-01 10:52:47 -0700 |
| commit | 4db4faef0f96bfd3504f5eac454a0308c618ccd6 (patch) | |
| tree | 2473bbea06c125cf17676c913e76833b81e81e57 /test/ruby | |
| parent | e080a4cdeeb55dddb6247ffd2563d2dc8b84c919 (diff) | |
Revert "Fix Range#{max,minmax} for range with integer beginning and non-integer end"
This reverts commit 8900a25581822759daca528d46a75e0b743fc22e.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/3500
Diffstat (limited to 'test/ruby')
| -rw-r--r-- | test/ruby/test_range.rb | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/test/ruby/test_range.rb b/test/ruby/test_range.rb index 0b3f6c68f6..07a092858e 100644 --- a/test/ruby/test_range.rb +++ b/test/ruby/test_range.rb @@ -107,13 +107,11 @@ class TestRange < Test::Unit::TestCase assert_equal(1, (1...2).max) assert_raise(RangeError) { (1..).max } assert_raise(RangeError) { (1...).max } - assert_equal(2, (1..2.1).max) - assert_equal(2, (1...2.1).max) assert_equal(2.0, (1.0..2.0).max) assert_equal(nil, (2.0..1.0).max) assert_raise(TypeError) { (1.0...2.0).max } - assert_equal(1, (1...1.5).max) + assert_raise(TypeError) { (1...1.5).max } assert_raise(TypeError) { (1.5...2).max } assert_equal(-0x80000002, ((-0x80000002)...(-0x80000001)).max) @@ -139,13 +137,11 @@ class TestRange < Test::Unit::TestCase assert_equal([1, 1], (1...2).minmax) assert_raise(RangeError) { (1..).minmax } assert_raise(RangeError) { (1...).minmax } - assert_equal([1, 2], (1..2.1).minmax) - assert_equal([1, 2], (1...2.1).minmax) assert_equal([1.0, 2.0], (1.0..2.0).minmax) assert_equal([nil, nil], (2.0..1.0).minmax) assert_raise(TypeError) { (1.0...2.0).minmax } - assert_equal([1, 1], (1..1.5).minmax) + assert_raise(TypeError) { (1...1.5).minmax } assert_raise(TypeError) { (1.5...2).minmax } assert_equal([-0x80000002, -0x80000002], ((-0x80000002)...(-0x80000001)).minmax) @@ -660,12 +656,7 @@ class TestRange < Test::Unit::TestCase assert_not_operator(1..10, :cover?, 3...2) assert_not_operator(1..10, :cover?, 3...3) assert_not_operator('aa'..'zz', :cover?, 'aa'...'zzz') - assert_not_operator(1..10, :cover?, 1...10.1) - assert_not_operator(1...10.1, :cover?, 1..10.1) - assert_operator(1..10.1, :cover?, 1...10.1) - assert_operator(1..10.1, :cover?, 1...10) - assert_operator(1..10.1, :cover?, 1..10) end def test_beg_len |
