From 4ff235fe433124eed0ee089b8a9d85f74891952f Mon Sep 17 00:00:00 2001 From: usa Date: Fri, 11 Nov 2016 22:52:15 +0000 Subject: merge revision(s) 56489: [Backport #12832] * proc.c (mnew_internal): follow the original class, not to loop the prepended module. [ruby-core:77591] [Bug #12832] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@56731 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_method.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'test') diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb index 35ddc87bcc..6a21ef4f69 100644 --- a/test/ruby/test_method.rb +++ b/test/ruby/test_method.rb @@ -856,6 +856,22 @@ class TestMethod < Test::Unit::TestCase assert_nil(m, Feature9781) end + def test_prepended_public_zsuper + mod = EnvUtil.labeled_module("Mod") {private def foo; :ok end} + mods = [mod] + obj = Object.new.extend(mod) + class << obj + public :foo + end + 2.times do |i| + mods.unshift(mod = EnvUtil.labeled_module("Mod#{i}") {def foo; end}) + obj.singleton_class.prepend(mod) + end + m = obj.method(:foo) + assert_equal(mods, mods.map {m.owner.tap {m = m.super_method}}) + assert_nil(m) + end + def rest_parameter(*rest) rest end -- cgit v1.2.3