1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/ruby/test_method.rb
shyouhei d0af0f2f2a * eval.c (mnew): call of super via a method object should work again.
[ruby-talk:248647], Thanks Calamitas.

* test/ruby/test_method.rb (TestMethod::test_method_super): test for
  above fix.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@12391 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-05-26 20:21:34 +00:00

53 lines
1.2 KiB
Ruby

require 'test/unit'
class TestMethod < Test::Unit::TestCase
def m0() end
def m1(a) end
def m2(a, b) end
def mo1(a = nil, &b) end
def mo2(a, b = nil) end
def mo3(*a) end
def mo4(a, *b, &c) end
class Base
def foo() :base end
def bar() :bar end
end
module SuperBar
def bar() super end
end
class Derived < Base
include SuperBar
def foo() :derived end
end
def test_arity
assert_equal(0, method(:m0).arity)
assert_equal(1, method(:m1).arity)
assert_equal(2, method(:m2).arity)
assert_equal(-1, method(:mo1).arity)
assert_equal(-2, method(:mo2).arity)
assert_equal(-1, method(:mo3).arity)
assert_equal(-2, method(:mo4).arity)
end
def test_unbind
assert_equal(:derived, Derived.new.foo)
um = Derived.new.method(:foo).unbind
assert_instance_of(UnboundMethod, um)
Derived.class_eval do
def foo() :changed end
end
assert_equal(:changed, Derived.new.foo)
assert_equal(:derived, um.bind(Derived.new).call)
assert_raise(TypeError) do
um.bind(Base.new)
end
end
def test_method_super
assert_nothing_raised do
assert_equal(:bar, Derived.new.method(:bar).call)
end
end
end