зеркало из https://github.com/github/ruby.git
test/test_tempfile.rb: close a file object created by Tempfile.create
To stop a "Leaked file descriptor" warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63094 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
85bcd2b35f
Коммит
2de0c72947
|
@ -396,8 +396,10 @@ puts Tempfile.new('foo').path
|
|||
|
||||
def test_create_traversal_dir
|
||||
expect = Dir.glob(TRAVERSAL_PATH + '*').count
|
||||
Tempfile.create(TRAVERSAL_PATH + 'foo')
|
||||
t = Tempfile.create(TRAVERSAL_PATH + 'foo')
|
||||
actual = Dir.glob(TRAVERSAL_PATH + '*').count
|
||||
assert_equal expect, actual
|
||||
ensure
|
||||
t.close
|
||||
end
|
||||
end
|
||||
|
|
Загрузка…
Ссылка в новой задаче