From 5e98991f1bf475cedff781e3ae2f2307c884f52d Mon Sep 17 00:00:00 2001 From: charliesome Date: Mon, 5 Aug 2013 01:02:22 +0000 Subject: * object.c (rb_class_inherited_p): allow iclasses to be tested for inheritance. [Bug #8686] [ruby-core:56174] * test/ruby/test_method.rb: add test git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42380 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_method.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb index c11dcf9269..18c25f14d1 100644 --- a/test/ruby/test_method.rb +++ b/test/ruby/test_method.rb @@ -262,6 +262,22 @@ class TestMethod < Test::Unit::TestCase end end + def test_define_singleton_method_with_extended_method + bug8686 = "[ruby-core:56174]" + + m = Module.new do + extend self + + def a + "a" + end + end + + assert_nothing_raised do + m.define_singleton_method(:a, m.method(:a)) + end + end + def test_define_method_transplating feature4254 = '[ruby-core:34267]' m = Module.new {define_method(:meth, M.instance_method(:meth))} -- cgit v1.2.3