зеркало из https://github.com/github/ruby.git
* test/test_tempfile.rb (test_{new,create}_traversal_dir): should not assume `t`
is always set. if `t` is nil, `NoMethodError` will be raised and the real cause will be hidden. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63096 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
c7d4c59872
Коммит
97d610becd
|
@ -391,7 +391,7 @@ puts Tempfile.new('foo').path
|
||||||
actual = Dir.glob(TRAVERSAL_PATH + '*').count
|
actual = Dir.glob(TRAVERSAL_PATH + '*').count
|
||||||
assert_equal expect, actual
|
assert_equal expect, actual
|
||||||
ensure
|
ensure
|
||||||
t.close!
|
t&.close!
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_create_traversal_dir
|
def test_create_traversal_dir
|
||||||
|
@ -400,6 +400,6 @@ puts Tempfile.new('foo').path
|
||||||
actual = Dir.glob(TRAVERSAL_PATH + '*').count
|
actual = Dir.glob(TRAVERSAL_PATH + '*').count
|
||||||
assert_equal expect, actual
|
assert_equal expect, actual
|
||||||
ensure
|
ensure
|
||||||
t.close
|
t&.close
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Загрузка…
Ссылка в новой задаче