From 8f4c474bd374010dac656c0a6eff7157edd87252 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 2 Jul 2010 08:40:51 +0000 Subject: * test/ruby/test_module.rb (test_attr_inherited_visibility): more discussion needed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28521 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_module.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb index 23c944f4bb..0e4737dea6 100644 --- a/test/ruby/test_module.rb +++ b/test/ruby/test_module.rb @@ -928,6 +928,8 @@ class TestModule < Test::Unit::TestCase end def test_attr_inherited_visibility + bug3406 = '[ruby-core:30638]' + skip(bug3406) c = Class.new do class << self private @@ -935,7 +937,6 @@ class TestModule < Test::Unit::TestCase end attr_accessor :x end.new - bug3406 = '[ruby-core:30638]' assert_nothing_raised(bug3406) {c.x = 1} assert_equal(1, c.x, bug3406) end -- cgit v1.2.3