aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_integer_comb.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-22 02:28:03 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-22 02:28:03 +0000
commitfbdd3c97ddc4c125dbebfc412b2f41a4745c45bb (patch)
treed04723411e2304c997f76c7943110df233fc9c4f /test/ruby/test_integer_comb.rb
parent333045c934b3815642c77855fc12915dca8ae1a1 (diff)
downloadruby-fbdd3c97ddc4c125dbebfc412b2f41a4745c45bb.tar.gz
move duplicate assertions
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55109 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_integer_comb.rb')
-rw-r--r--test/ruby/test_integer_comb.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/ruby/test_integer_comb.rb b/test/ruby/test_integer_comb.rb
index 7e21279f4e..80d08cac04 100644
--- a/test/ruby/test_integer_comb.rb
+++ b/test/ruby/test_integer_comb.rb
@@ -110,16 +110,6 @@ class TestIntegerComb < Test::Unit::TestCase
#VS.concat VS.find_all {|v| Fixnum === v }.map {|v| 0x4000000000000000.coerce(v)[0] }
#VS.sort! {|a, b| a.abs <=> b.abs }
- FIXNUM_MIN = Integer::FIXNUM_MIN
- FIXNUM_MAX = Integer::FIXNUM_MAX
-
- def test_fixnum_range
- assert_bignum(FIXNUM_MIN-1)
- assert_fixnum(FIXNUM_MIN)
- assert_fixnum(FIXNUM_MAX)
- assert_bignum(FIXNUM_MAX+1)
- end
-
def test_aref
VS.each {|a|
100.times {|i|