* 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
Родитель e0060732f1
Коммит b8a1e15ef1
2 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Fri Jul 22 20:24:38 2011 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* test/ruby/test_object.rb (TestObject#test_respond_to_missing):
2nd argument of respond_to_missing? is not optional.
Fri Jul 22 19:05:47 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
* parse.y (rb_enc_symname2_p): get rid of potential out-of-bound

Просмотреть файл

@ -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