mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/ruby/test_proc.rb (test_arity): added.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5044 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4148ae45cf
commit
a017b0cc8a
1 changed files with 39 additions and 13 deletions
|
@ -4,21 +4,24 @@ $KCODE = 'none'
|
||||||
|
|
||||||
class TestProc < Test::Unit::TestCase
|
class TestProc < Test::Unit::TestCase
|
||||||
def test_proc
|
def test_proc
|
||||||
$proc = proc{|i| i}
|
p1 = proc{|i| i}
|
||||||
assert_equal(2, $proc.call(2))
|
assert_equal(2, p1.call(2))
|
||||||
assert_equal(3, $proc.call(3))
|
assert_equal(3, p1.call(3))
|
||||||
|
|
||||||
$proc = proc{|i| i*2}
|
p1 = proc{|i| i*2}
|
||||||
assert_equal(4, $proc.call(2))
|
assert_equal(4, p1.call(2))
|
||||||
assert_equal(6, $proc.call(3))
|
assert_equal(6, p1.call(3))
|
||||||
|
|
||||||
|
p2 = nil
|
||||||
|
x=0
|
||||||
|
|
||||||
proc{
|
proc{
|
||||||
iii=5 # nested local variable
|
iii=5 # nested local variable
|
||||||
$proc = proc{|i|
|
p1 = proc{|i|
|
||||||
iii = i
|
iii = i
|
||||||
}
|
}
|
||||||
$proc2 = proc {
|
p2 = proc {
|
||||||
$x = iii # nested variables shared by procs
|
x = iii # nested variables shared by procs
|
||||||
}
|
}
|
||||||
# scope of nested variables
|
# scope of nested variables
|
||||||
assert(defined?(iii))
|
assert(defined?(iii))
|
||||||
|
@ -37,9 +40,32 @@ class TestProc < Test::Unit::TestCase
|
||||||
dyna_var_check
|
dyna_var_check
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
$x=0
|
p1.call(5)
|
||||||
$proc.call(5)
|
p2.call
|
||||||
$proc2.call
|
assert_equal(5, x)
|
||||||
assert_equal(5, $x)
|
end
|
||||||
|
|
||||||
|
def assert_arity(n)
|
||||||
|
meta = class << self; self; end
|
||||||
|
meta.class_eval {define_method(:foo, Proc.new)}
|
||||||
|
assert_equal(n, method(:foo).arity)
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_arity
|
||||||
|
assert_equal(-1, proc{}.arity)
|
||||||
|
assert_equal(0, proc{||}.arity)
|
||||||
|
assert_equal(1, proc{|x|}.arity)
|
||||||
|
assert_equal(2, proc{|x, y|}.arity)
|
||||||
|
assert_equal(-2, proc{|x, *y|}.arity)
|
||||||
|
assert_equal(-1, proc{|*x|}.arity)
|
||||||
|
assert_equal(-1, proc{|*|}.arity)
|
||||||
|
|
||||||
|
assert_arity(-1) {}
|
||||||
|
assert_arity(0) {||}
|
||||||
|
assert_arity(1) {|x|}
|
||||||
|
assert_arity(2) {|x, y|}
|
||||||
|
assert_arity(-2) {|x, *y|}
|
||||||
|
assert_arity(-1) {|*x|}
|
||||||
|
assert_arity(-1) {|*|}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue