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

* test/ruby/test_object.rb (TestObject#test_respond_to_missing):

2nd argument of respond_to_missing? is not optional.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32619 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2011-07-22 11:37:06 +00:00
parent e0060732f1
commit b8a1e15ef1
2 changed files with 7 additions and 2 deletions

View file

@ -336,14 +336,14 @@ class TestObject < Test::Unit::TestCase
def test_respond_to_missing
c = Class.new do
def respond_to_missing?(id, priv=false)
def respond_to_missing?(id, priv)
if id == :foobar
true
else
false
end
end
def method_missing(id,*args)
def method_missing(id, *args)
if id == :foobar
return [:foo, *args]
else