From a8b0c2529301df76a1ea8c03ead3d0d163ab56bc Mon Sep 17 00:00:00 2001 From: ko1 Date: Sun, 20 Dec 2015 02:14:57 +0000 Subject: * proc.c (rb_mod_define_method): should check Symbol or not. [Bug #11850] * test/ruby/test_method.rb: add a test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53213 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_method.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb index cc2c9873c5..1e5f05473c 100644 --- a/test/ruby/test_method.rb +++ b/test/ruby/test_method.rb @@ -939,4 +939,18 @@ class TestMethod < Test::Unit::TestCase assert_equal([:m1, :m2, :m3].sort, MethodInMethodClass.public_instance_methods(false).sort) assert_equal([].sort, MethodInMethodClass.private_instance_methods(false).sort) end + + def test_define_method_with_symbol + assert_normal_exit %q{ + define_method(:foo, &:to_s) + define_method(:bar, :to_s.to_proc) + }, '[Bug #11850]' + c = Class.new{ + define_method(:foo, &:to_s) + define_method(:bar, :to_s.to_proc) + } + obj = c.new + assert_equal('1', obj.foo(1)) + assert_equal('1', obj.bar(1)) + end end -- cgit v1.2.3