summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-22 11:37:06 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-22 11:37:06 +0000
commitb8a1e15ef120f824a7ab7d1fa793dc2da8154ac9 (patch)
treec08114f7f386c86cdc8022f0d9dbafd4d057b176
parente0060732f13f1f930feeb390e883f307dd0f89d4 (diff)
* 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
-rw-r--r--ChangeLog5
-rw-r--r--test/ruby/test_object.rb4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 840f2d49c7..48784b7877 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Jul 22 20:24:38 2011 Kazuhiro NISHIYAMA <[email protected]>
+
+ * 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 <[email protected]>
* parse.y (rb_enc_symname2_p): get rid of potential out-of-bound
diff --git a/test/ruby/test_object.rb b/test/ruby/test_object.rb
index 63c1d32bef..2935885431 100644
--- a/test/ruby/test_object.rb
+++ b/test/ruby/test_object.rb
@@ -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