summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_method.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb
index dc44eee274..c60f7fa8a8 100644
--- a/test/ruby/test_method.rb
+++ b/test/ruby/test_method.rb
@@ -51,6 +51,10 @@ class TestMethod < Test::Unit::TestCase
assert_equal(-3, method(:mo6).arity)
end
+ def test_arity_special
+ assert_equal(-1, method(:__send__).arity)
+ end
+
def test_unbind
assert_equal(:derived, Derived.new.foo)
um = Derived.new.method(:foo).unbind