1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/-ext-/iter/test_yield_block.rb
nobu dacc2c2436 vm_eval.c: blockarg
* vm_eval.c (rb_yield_block): implement non-nil block argument.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43927 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2013-11-30 04:21:26 +00:00

21 lines
452 B
Ruby

require 'test/unit'
require '-test-/iter'
module TestIter
end
class TestIter::YieldBlock < Test::Unit::TestCase
class YieldTest
include Bug::Iter::Yield
attr_reader :blockarg
def test(arg, &block)
block.call(arg) {|blockarg| @blockarg = blockarg}
end
end
def test_yield_block
a = YieldTest.new
a.yield_block(:test, "foo") {|x, &b| assert_kind_of(Proc, b); b.call(x)}
assert_equal("foo", a.blockarg)
end
end