зеркало из https://github.com/github/ruby.git
test_fileutils.rb: rmdir should fail on nonexistent directory
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59935 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
2635984cf2
Коммит
1241d59cef
|
@ -1621,6 +1621,12 @@ class TestFileUtils < Test::Unit::TestCase
|
|||
rmdir(subdir, parents: true)
|
||||
}
|
||||
File.unlink("#{subdir}/file")
|
||||
assert_raise(Errno::ENOENT) {
|
||||
rmdir("#{subdir}/nonexistent")
|
||||
}
|
||||
assert_raise(Errno::ENOENT) {
|
||||
rmdir("#{subdir}/nonexistent", parents: true)
|
||||
}
|
||||
assert_nothing_raised(Errno::ENOENT) {
|
||||
rmdir(subdir, parents: true)
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче