aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_method.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_method.rb')
-rw-r--r--test/ruby/test_method.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb
index 7de4479a2b..ef4943c345 100644
--- a/test/ruby/test_method.rb
+++ b/test/ruby/test_method.rb
@@ -550,6 +550,7 @@ class TestMethod < Test::Unit::TestCase
def test_prepended
bug7836 = '[ruby-core:52160] [Bug #7836]'
+ bug7988 = '[ruby-core:53038] [Bug #7988]'
m = Module.new {
def foo
end
@@ -559,7 +560,7 @@ class TestMethod < Test::Unit::TestCase
end
prepend m
}
- assert_equal(c, c.instance_method(:foo).owner, bug7836)
+ assert_raise(NameError, bug7988) {Module.new{prepend m}.instance_method(:bar)}
end
def test_gced_bmethod