From 4ec86dcc5761a3eaca546ffe121c9d03d7e1e0cd Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 3 Nov 2010 05:17:25 +0000 Subject: * lib/ostruct.rb (OpenStruct#delete_field): also undefine accessor methods. [ruby-core:33010] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29677 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ostruct/test_ostruct.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'test/ostruct/test_ostruct.rb') diff --git a/test/ostruct/test_ostruct.rb b/test/ostruct/test_ostruct.rb index d92092339a..5c83bfd2a2 100644 --- a/test/ostruct/test_ostruct.rb +++ b/test/ostruct/test_ostruct.rb @@ -48,4 +48,17 @@ class TC_OpenStruct < Test::Unit::TestCase o.freeze assert_raise(TypeError, '[ruby-core:22559]') {o.a = 1764} end + + def test_delete_field + bug = '[ruby-core:33010]' + o = OpenStruct.new + assert_not_respond_to(o, :a) + assert_not_respond_to(o, :a=) + o.a = 'a' + assert_respond_to(o, :a) + assert_respond_to(o, :a=) + o.delete_field :a + assert_not_respond_to(o, :a, bug) + assert_not_respond_to(o, :a=, bug) + end end -- cgit v1.2.3