* vm_method.c: Remove private attribute warning [Bug #10967]

Patch by @spastorino [Fixes GH-849]
  https://github.com/ruby/ruby/pull/849

* test/ruby/test_module.rb: Update test for changes


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50585 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
zzak 2015-05-21 06:40:27 +00:00
parent ac9d6b050b
commit 32a5a098e3
3 changed files with 12 additions and 5 deletions

View file

@ -836,7 +836,7 @@ class TestModule < Test::Unit::TestCase
end
def test_attr
assert_in_out_err([], <<-INPUT, %w(:ok nil), /warning: private attribute\?$/)
assert_in_out_err([], <<-INPUT, %w(nil))
$VERBOSE = true
c = Class.new
c.instance_eval do
@ -844,7 +844,6 @@ class TestModule < Test::Unit::TestCase
attr_reader :foo
end
o = c.new
o.foo rescue p(:ok)
p(o.instance_eval { foo })
INPUT