mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 22:14:37 +02:00
Tests of Enumerator::Yielder#yield with multiple arguments
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64768 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
32fd8649d8
commit
3367daf716
2 changed files with 13 additions and 0 deletions
|
@ -476,6 +476,12 @@ class TestEnumerator < Test::Unit::TestCase
|
|||
assert_equal([1], y.yield(1))
|
||||
assert_equal([1, 2], y.yield(2))
|
||||
assert_equal([1, 2, 3], y.yield(3))
|
||||
assert_equal([1, 2, 3, 4], y.yield(4, 5))
|
||||
|
||||
a = []
|
||||
y = Enumerator::Yielder.new {|*x| a.concat(x) }
|
||||
assert_equal([1], y.yield(1))
|
||||
assert_equal([1, 2, 3], y.yield(2, 3))
|
||||
|
||||
assert_raise(LocalJumpError) { Enumerator::Yielder.new }
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue