mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* vm_method.c (obj_respond_to): fix the respond_to_missing? override
case. based on the patch by Jeremy Evans at [ruby-core:38417]. [Feature #5072] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32685 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3fbc65d47f
commit
298349d03b
3 changed files with 26 additions and 2 deletions
|
@ -334,6 +334,19 @@ class TestObject < Test::Unit::TestCase
|
|||
assert_nothing_raised(bug2494) {[b].flatten}
|
||||
end
|
||||
|
||||
def test_respond_to_missing_string
|
||||
c = Class.new do
|
||||
def respond_to_missing?(id, priv)
|
||||
!(id !~ /\Agadzoks\d+\z/) ^ priv
|
||||
end
|
||||
end
|
||||
foo = c.new
|
||||
assert_equal(false, foo.respond_to?("gadzooks16"))
|
||||
assert_equal(true, foo.respond_to?("gadzooks17", true))
|
||||
assert_equal(true, foo.respond_to?("gadzoks16"))
|
||||
assert_equal(false, foo.respond_to?("gadzoks17", true))
|
||||
end
|
||||
|
||||
def test_respond_to_missing
|
||||
c = Class.new do
|
||||
def respond_to_missing?(id, priv)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue