summaryrefslogtreecommitdiff
path: root/test/ruby/test_method.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_method.rb')
-rw-r--r--test/ruby/test_method.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb
index acaf43e46c..1d59ddb594 100644
--- a/test/ruby/test_method.rb
+++ b/test/ruby/test_method.rb
@@ -1140,4 +1140,13 @@ class TestMethod < Test::Unit::TestCase
assert_equal(m, o.:foo)
assert_nil(o.method(:foo))
end
+
+ def test_umethod_bind_call
+ foo = Base.instance_method(:foo)
+ assert_equal(:base, foo.bind_call(Base.new))
+ assert_equal(:base, foo.bind_call(Derived.new))
+
+ plus = Integer.instance_method(:+)
+ assert_equal(3, plus.bind_call(1, 2))
+ end
end