1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* vm.c (rb_iter_break_value): new function to break a block with

the value.  [ruby-dev:45132] [Feature #5895]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34369 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-01-24 05:20:48 +00:00
parent d03199b6d6
commit 04726dd749
7 changed files with 43 additions and 4 deletions

View file

@ -0,0 +1,9 @@
require 'test/unit'
require '-test-/iter/break'
class TestIterBreak < Test::Unit::TestCase
def test_iter_break
feature5895 = '[ruby-dev:45132]'
assert_equal(42, 1.times{Bug::Breakable.iter_break(42)}, feature5895)
end
end