summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_fixnum.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/ruby/test_fixnum.rb b/test/ruby/test_fixnum.rb
index e0d2b18b44..43737d60b0 100644
--- a/test/ruby/test_fixnum.rb
+++ b/test/ruby/test_fixnum.rb
@@ -238,11 +238,4 @@ class TestFixnum < Test::Unit::TestCase
assert(!(1.send(:<=, 0.0)))
assert_raise(ArgumentError) { 1.send(:<=, nil) }
end
-
- def test_id2name
- assert_equal("foo", :foo.to_i.id2name)
- assert_nil(0.id2name)
- assert_equal(:foo, :foo.to_i.to_sym)
- assert_nil(0.to_sym)
- end
end