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

* test/ruby/test_iterator.rb: new test test_break__nested_loop[123].

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4627 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
aamine 2003-09-29 17:59:03 +00:00
parent 8f52e49124
commit 2eeb39b3cf
2 changed files with 44 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Tue Sep 30 02:54:49 2003 Minero Aoki <aamine@loveruby.net>
* test/ruby/test_iterator.rb: new test
test_break__nested_loop[123].
Mon Sep 29 23:39:13 2003 Minero Aoki <aamine@loveruby.net>
* lib/net/http.rb (finish): does not raise IOError even if

View file

@ -359,4 +359,43 @@ class TestIterator < Test::Unit::TestCase
def test_iter4
ITER_TEST4.new.foo(44){55}
end
def test_break__nested_loop1
_test_break__nested_loop1 do
break
end
end
def _test_break__nested_loop1
while true
yield
end
assert(false, "must not reach here")
end
def test_break__nested_loop2
_test_break__nested_loop2 do
break
end
end
def _test_break__nested_loop2
until false
yield
end
assert(false, "must not reach here")
end
def test_break__nested_loop3
_test_break__nested_loop3 do
break
end
end
def _test_break__nested_loop3
loop do
yield
end
assert(false, "must not reach here")
end
end