summaryrefslogtreecommitdiff
path: root/test/ruby/test_method.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-14 14:02:33 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-14 14:02:33 +0000
commitbacadbe9bfae2a9183934c08baaaefdec6d8dafe (patch)
tree92b56bb542054c36b41a0f4b8ae4bfb58b47319b /test/ruby/test_method.rb
parent452f46b751a93a97fe42febebe8e8d5241752475 (diff)
proc.c: infect inspect result
* proc.c (method_inspect): the result should be infected by the object. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59083 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_method.rb')
-rw-r--r--test/ruby/test_method.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb
index 1f8b86acdc..6e201911f9 100644
--- a/test/ruby/test_method.rb
+++ b/test/ruby/test_method.rb
@@ -454,6 +454,9 @@ class TestMethod < Test::Unit::TestCase
c3.class_eval { alias bar foo }
m3 = c3.new.method(:bar)
assert_equal("#<Method: #{c3.inspect}(#{c.inspect})#bar(foo)>", m3.inspect, bug7806)
+
+ m.taint
+ assert_predicate(m.inspect, :tainted?, "inspect result should be infected")
end
def test_callee_top_level