зеркало из https://github.com/github/ruby.git
add a test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26702 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
457c2c4a55
Коммит
6dda216da1
|
@ -1312,6 +1312,19 @@ class TestIO < Test::Unit::TestCase
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_reopen_inherit
|
||||||
|
mkcdtmpdir {
|
||||||
|
system(EnvUtil.rubybin, '-e', <<"End")
|
||||||
|
f = open("out", "w")
|
||||||
|
STDOUT.reopen(f)
|
||||||
|
STDERR.reopen(f)
|
||||||
|
system(#{EnvUtil.rubybin.dump}, '-e', 'STDOUT.print "out"')
|
||||||
|
system(#{EnvUtil.rubybin.dump}, '-e', 'STDERR.print "err"')
|
||||||
|
End
|
||||||
|
assert_equal("outerr", File.read("out"))
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
def test_foreach
|
def test_foreach
|
||||||
a = []
|
a = []
|
||||||
IO.foreach("|" + EnvUtil.rubybin + " -e 'puts :foo; puts :bar; puts :baz'") {|x| a << x }
|
IO.foreach("|" + EnvUtil.rubybin + " -e 'puts :foo; puts :bar; puts :baz'") {|x| a << x }
|
||||||
|
|
Загрузка…
Ссылка в новой задаче