mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
04726dd749
the value. [ruby-dev:45132] [Feature #5895] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34369 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
9 lines
235 B
Ruby
9 lines
235 B
Ruby
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
|