From 10ce99866f4c335e8015b462bc1c0c2278aa8a74 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 5 Jan 2015 01:57:26 +0000 Subject: ostruct.rb: append suffixes to protected methods * lib/ostruct.rb (modifiable?, new_ostruct_member!, table!): append suffixes to protected methods so that they will not clash with assigned members. [Fix GH-806] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49145 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ostruct/test_ostruct.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test/ostruct/test_ostruct.rb') diff --git a/test/ostruct/test_ostruct.rb b/test/ostruct/test_ostruct.rb index 14bc2b2da8..2c0da2a419 100644 --- a/test/ostruct/test_ostruct.rb +++ b/test/ostruct/test_ostruct.rb @@ -135,4 +135,10 @@ class TC_OpenStruct < Test::Unit::TestCase e = assert_raise(ArgumentError) { os.send :foo=, true, true } assert_match(/#{__callee__}/, e.backtrace[0]) end + + def test_modifiable + os = OpenStruct.new(modifiable: true) + assert_equal true, os.modifiable + assert_nothing_raised { os.foo = true } + end end -- cgit v1.2.3