From 15960b37e82ba60455c480b1c23e1567255d3e05 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 29 Dec 2015 03:48:36 +0000 Subject: ostruct.rb: respond_to? * lib/ostruct.rb (OpenStruct): make respond_to? working on just-allocated objects for workaround of Psych. [ruby-core:72501] [Bug #11884] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53366 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ostruct/test_ostruct.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/ostruct') diff --git a/test/ostruct/test_ostruct.rb b/test/ostruct/test_ostruct.rb index 8c122b94a7..8b0424d2d8 100644 --- a/test/ostruct/test_ostruct.rb +++ b/test/ostruct/test_ostruct.rb @@ -23,6 +23,10 @@ class TC_OpenStruct < Test::Unit::TestCase assert_respond_to(o, :a=) end + def test_respond_to_allocated + assert_not_respond_to(OpenStruct.allocate, :a) + end + def test_equality o1 = OpenStruct.new o2 = OpenStruct.new -- cgit v1.2.3