1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* proc.c (mnew): generate method object that wraps method_missing,

when #respond_to_missing? is defined.

* test/ruby/test_object.rb (test_respond_to_missing): add test
  suites for #respond_to_missing? changes.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25073 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2009-09-24 04:42:28 +00:00
parent 399dace5ed
commit c4b0b4c91c
3 changed files with 62 additions and 0 deletions

View file

@ -304,6 +304,39 @@ class TestObject < Test::Unit::TestCase
end
end
def test_respond_to_missing
c = Class.new
c.class_eval do
def respond_to_missing?(id)
if id == :foobar
true
else
false
end
end
def method_missing(id,*args)
if id == :foobar
return [:foo, *args]
else
super
end
end
end
foo = c.new
assert_equal([:foo], foo.foobar);
assert_equal([:foo, 1], foo.foobar(1));
assert(foo.respond_to?(:foobar))
assert_equal(false, foo.respond_to?(:foobarbaz))
assert_raise(NoMethodError) do
foo.foobarbaz
end
foobar = foo.method(:foobar)
assert_equal([:foo], foobar.call);
assert_equal([:foo, 1], foobar.call(1));
end
def test_send_with_no_arguments
assert_raise(ArgumentError) { 1.send }
end