From f6469e8d86dc70849b15d11f3282ffc4a891913c Mon Sep 17 00:00:00 2001 From: kazu Date: Thu, 17 Sep 2009 22:08:32 +0000 Subject: * test/fileutils/test_fileutils.rb: add a test for [ruby-dev:39345] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ test/fileutils/test_fileutils.rb | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 359f53f4b..7a0d8ff21 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Sep 18 07:06:41 2009 Kazuhiro NISHIYAMA + + * test/fileutils/test_fileutils.rb: add a test for [ruby-dev:39345] + Fri Sep 18 06:47:13 2009 Nobuyoshi Nakada * dir.c (push_glob): str should be a string always. diff --git a/test/fileutils/test_fileutils.rb b/test/fileutils/test_fileutils.rb index 69bc51f7a..2e04dc123 100644 --- a/test/fileutils/test_fileutils.rb +++ b/test/fileutils/test_fileutils.rb @@ -440,6 +440,11 @@ end assert_file_not_exist 'tmp/rmtmp2' assert_file_not_exist 'tmp/rmtmp3' assert_file_exist 'tmp/rmtmp4' + + # [ruby-dev:39345] + touch 'tmp/[rmtmp]' + rm_f 'tmp/[rmtmp]' + assert_file_not_exist 'tmp/[rmtmp]' end def test_rm_r -- cgit