summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-24 01:58:56 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-24 01:58:56 +0000
commitcacecbfc9982b7a2ac9aa165859bfad73ddc32c8 (patch)
treedff13fccd51b4db68b404d6c30fb5e20748b7ad3 /test
parentd37247c79c094e5c1c5b86892cd0ca1c15aa6483 (diff)
merges r28297 from trunk into ruby_1_9_2.
-- * test/ruby/test_method.rb (test_public_methods_with_extended): test for [ruby-dev:41553]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@28416 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_method.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb
index 86ab64feb1..7be70b00a6 100644
--- a/test/ruby/test_method.rb
+++ b/test/ruby/test_method.rb
@@ -335,4 +335,14 @@ class TestMethod < Test::Unit::TestCase
end
assert_equal(:ok, d.new.public_method(:foo).call)
end
+
+ def test_public_methods_with_extended
+ m = Module.new do def m1; end end
+ a = Class.new do def a; end end
+ bug = '[ruby-dev:41553]'
+ obj = a.new
+ assert_equal([:a], obj.public_methods(false), bug)
+ obj.extend(m)
+ assert_equal([:m1, :a], obj.public_methods(false), bug)
+ end
end