From f56c0c063174caa417ca1e54d59d76c266026bbf Mon Sep 17 00:00:00 2001 From: nagachika Date: Tue, 18 Jun 2013 19:40:13 +0000 Subject: merge revision(s) 41389: [Backport #8540] * vm_insnhelper.c (vm_call_method): ensure methods of type VM_METHOD_TYPE_ATTR_SET are called with 1 argument * test/ruby/test_module.rb (class TestModule): add test [ruby-core:55543] [Bug #8540] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@41395 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_module.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb index 9db30ee39c..1239711756 100644 --- a/test/ruby/test_module.rb +++ b/test/ruby/test_module.rb @@ -1165,6 +1165,14 @@ class TestModule < Test::Unit::TestCase assert_equal(1, c.x, bug3406) end + def test_attr_writer_with_no_arguments + bug8540 = "[ruby-core:55543]" + c = Class.new do + attr_writer :foo + end + assert_raise(ArgumentError) { c.new.send :foo= } + end + def test_private_constant c = Class.new c.const_set(:FOO, "foo") -- cgit v1.2.3