From 06675418948d45f5448c7b722f1e7c990f5c89bc Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 13 Dec 2012 04:06:40 +0000 Subject: method transplanting * proc.c (umethod_bind): allow another form of method transplanting from a module via UnboundMethod. [ruby-core:34267][Feature #4254] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38354 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_method.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/ruby/test_method.rb') diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb index 06c1c2c08f..c8f55e20e5 100644 --- a/test/ruby/test_method.rb +++ b/test/ruby/test_method.rb @@ -206,6 +206,10 @@ class TestMethod < Test::Unit::TestCase def o.bar; end m = o.method(:bar).unbind assert_raise(TypeError) { m.bind(Object.new) } + + feature4254 = '[ruby-core:34267]' + m = M.instance_method(:meth) + assert_equal(:meth, m.bind(Object.new).call, feature4254) end def test_define_method -- cgit v1.2.3