summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-07-02 08:40:51 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-07-02 08:40:51 +0000
commit8f4c474bd374010dac656c0a6eff7157edd87252 (patch)
treeb3247eaf6349a2058861baba6b3a77760f3a1010 /test
parent707d22f1dd19cc18bed95f17374d1081d0efd248 (diff)
* 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
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_module.rb3
1 files changed, 2 insertions, 1 deletions
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