diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-07-02 08:40:51 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-07-02 08:40:51 +0000 |
commit | 8f4c474bd374010dac656c0a6eff7157edd87252 (patch) | |
tree | b3247eaf6349a2058861baba6b3a77760f3a1010 /test/ruby/test_module.rb | |
parent | 707d22f1dd19cc18bed95f17374d1081d0efd248 (diff) | |
download | ruby-8f4c474bd374010dac656c0a6eff7157edd87252.tar.gz |
* 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/ruby/test_module.rb')
-rw-r--r-- | test/ruby/test_module.rb | 3 |
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 |