1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Explicitly use FileUtils.rm_f. [ruby-dev:39345]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26090 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2009-12-14 03:19:51 +00:00
parent cc744ef9b8
commit 315cab1249

View file

@ -452,7 +452,7 @@ class TestFileUtils
# [ruby-dev:39345]
touch 'tmp/[rmtmp]'
rm_f 'tmp/[rmtmp]'
FileUtils.rm_f 'tmp/[rmtmp]'
assert_file_not_exist 'tmp/[rmtmp]'
end