From d65d2384a6ef555f0eb10c65def1198f01e17e4b Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 12 Jun 2010 07:56:23 +0000 Subject: * test/ruby/test_module.rb (test_attr_inherited_visibility): see [ruby-core:30638]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28299 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_module.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb index 77598e957f..23c944f4bb 100644 --- a/test/ruby/test_module.rb +++ b/test/ruby/test_module.rb @@ -926,4 +926,17 @@ class TestModule < Test::Unit::TestCase e = assert_raise(NameError) {eval("Bug3123", TOPLEVEL_BINDING)} assert_not_match(/Object::/, e.message, bug3123) end + + def test_attr_inherited_visibility + c = Class.new do + class << self + private + def attr_accessor(*); super; end + end + attr_accessor :x + end.new + bug3406 = '[ruby-core:30638]' + assert_nothing_raised(bug3406) {c.x = 1} + assert_equal(1, c.x, bug3406) + end end -- cgit v1.2.3