1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
nobu 2010-06-12 07:56:23 +00:00
parent 99058e83be
commit d65d2384a6

View file

@ -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