summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-02 04:50:45 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-02 04:50:45 +0000
commite54808bb2fae5950558a39a17a47514a5b153ff0 (patch)
tree4878d396bfe54795a425fb9eb5ffaee3d17c0b10 /test
parent8d19c41429782a0a977a7cf243616eb5b8ef50a7 (diff)
test_method.rb: remove unlinked method entry test
* test/ruby/test_method.rb: remove test for unlinked method entry which is no longer vaild since r50728. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52005 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_method.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb
index 0e2178d30c..e8b8b4b86f 100644
--- a/test/ruby/test_method.rb
+++ b/test/ruby/test_method.rb
@@ -770,18 +770,6 @@ class TestMethod < Test::Unit::TestCase
}, '[Bug #7825]'
end
- def test_unlinked_method_entry_in_method_object_bug
- bug8100 = '[ruby-core:53640] [Bug #8100]'
- assert_normal_exit %q{
- 1_000_000.times do
- def x
- "hello" * 1000
- end
- method(:x).call
- end
- }, bug8100
- end
-
def test_singleton_method
feature8391 = '[ruby-core:54914] [Feature #8391]'
c1 = Class.new