summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-29 08:54:59 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-29 08:54:59 +0000
commit4c1ac0bc07eb7ae03684761351953418ad5deb1b (patch)
treeeecb2f961856c0af1c34c3a00e79e6c4d9e2232c /test
parent5d699f8a3a7ff32ebc36b7a92ececafeb81d9bab (diff)
merge revision(s) 53366:[Backport #11884]
* 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/branches/ruby_2_3@54387 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ostruct/test_ostruct.rb4
1 files changed, 4 insertions, 0 deletions
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