summaryrefslogtreecommitdiff
path: root/test/ruby/test_hash.rb
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-29 13:30:22 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-29 13:30:22 +0000
commit4cfbf8ec95cb321e494a47fe0c82447f2ddbc872 (patch)
tree129639a683860b142723b180aeed6323a88b98f1 /test/ruby/test_hash.rb
parent6af6154b418ba392feb6afbc14ef318de4c0e9ef (diff)
merge revision(s) 53695: [Backport #12030]
* vm_eval.c (rb_check_funcall_with_hook): also should call the given hook before returning Qundef when overridden respond_to? method returned false. [ruby-core:73556] [Bug #12030] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@54402 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_hash.rb')
-rw-r--r--test/ruby/test_hash.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/ruby/test_hash.rb b/test/ruby/test_hash.rb
index 6ee029722a..83c52a0c73 100644
--- a/test/ruby/test_hash.rb
+++ b/test/ruby/test_hash.rb
@@ -1316,6 +1316,15 @@ class TestHash < Test::Unit::TestCase
assert_equal({dug: [:foo, :bar]}, h.dig(:d, :foo, :bar))
end
+ def test_dig_with_respond_to
+ bug12030 = '[ruby-core:73556] [Bug #12030]'
+ o = Object.new
+ def o.respond_to?(*args)
+ super
+ end
+ assert_raise(TypeError) {{foo: o}.dig(:foo, :foo)}
+ end
+
def test_cmp
h1 = {a:1, b:2}
h2 = {a:1, b:2, c:3}