aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-04 05:30:08 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-04 05:30:08 +0000
commitf587eab23cdb70890f233d02eea7186ac05a21b1 (patch)
tree8b5310a18e9f1a27914264a8940d368ac5b4c13d
parent7ef9aba753191632da2289e0d14f3bc1723816f6 (diff)
downloadruby-f587eab23cdb70890f233d02eea7186ac05a21b1.tar.gz
* eval.c (rb_obj_respond_to): check the result of respond_to? method
by RTEST. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--eval.c2
-rw-r--r--test/ruby/test_string.rb8
3 files changed, 14 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index cf88c30aa2..addbbf30b5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun May 4 14:29:14 2008 Tanaka Akira <akr@fsij.org>
+
+ * eval.c (rb_obj_respond_to): check the result of respond_to? method
+ by RTEST.
+
Sun May 4 12:57:58 2008 Tanaka Akira <akr@fsij.org>
* string.c (rb_str_each_line): return original string.
diff --git a/eval.c b/eval.c
index ab2c33dbcb..e5c8d47fe2 100644
--- a/eval.c
+++ b/eval.c
@@ -454,7 +454,7 @@ rb_obj_respond_to(VALUE obj, ID id, int priv)
args[n++] = ID2SYM(id);
if (priv)
args[n++] = Qtrue;
- return rb_funcall2(obj, respond_to, n, args);
+ return RTEST(rb_funcall2(obj, respond_to, n, args));
}
}
diff --git a/test/ruby/test_string.rb b/test/ruby/test_string.rb
index c71be7d09d..70214c8ff5 100644
--- a/test/ruby/test_string.rb
+++ b/test/ruby/test_string.rb
@@ -1403,4 +1403,12 @@ class TestString < Test::Unit::TestCase
s1 << 'a'
}
end
+
+ def test_respond_to
+ o = Object.new
+ def o.respond_to?(arg) [:to_str].include?(arg) ? nil : super end
+ def o.to_str() "" end
+ def o.==(other) "" == other end
+ assert_equal(false, "" == o)
+ end
end