зеркало из https://github.com/github/ruby.git
Assert for duplicated ARGF [Bug #18074]
This commit is contained in:
Родитель
7de7e9fdb7
Коммит
c3964a313e
|
@ -1121,5 +1121,12 @@ class TestArgf < Test::Unit::TestCase
|
|||
ruby('-e', "print ARGF.read(3)", @t1.path, @t2.path, @t3.path) do |f|
|
||||
assert_equal("abc", f.read)
|
||||
end
|
||||
|
||||
argf = ARGF.class.new(@t1.path, @t2.path, @t3.path)
|
||||
begin
|
||||
assert_equal("abc", argf.read(3))
|
||||
ensure
|
||||
argf.close
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Загрузка…
Ссылка в новой задаче