From a50bdcd6dfe4e7eec48bee5b40aebaaa5513e053 Mon Sep 17 00:00:00 2001 From: marcandre Date: Fri, 27 May 2011 15:59:02 +0000 Subject: * lib/ostruct.rb (method_missing): Handle [] and []= correctly. Based on a patch by Caius Durling, bug #4179 [ruby-core:33792] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31753 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ostruct/test_ostruct.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'test/ostruct/test_ostruct.rb') diff --git a/test/ostruct/test_ostruct.rb b/test/ostruct/test_ostruct.rb index 5c83bfd2a2..db8e7415eb 100644 --- a/test/ostruct/test_ostruct.rb +++ b/test/ostruct/test_ostruct.rb @@ -61,4 +61,15 @@ class TC_OpenStruct < Test::Unit::TestCase assert_not_respond_to(o, :a, bug) assert_not_respond_to(o, :a=, bug) end + + def test_method_missing_handles_square_bracket_equals + o = OpenStruct.new + assert_raise(NoMethodError) { o[:foo] = :bar } + end + + def test_method_missing_handles_square_brackets + o = OpenStruct.new + assert_raise(NoMethodError) { o[:foo] } + end + end -- cgit v1.2.3