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

* test/ruby/test_file.rb (test_fnmatch): test for dir.c:1.108.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5823 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2004-02-24 09:03:19 +00:00
parent 77d7ff7cbe
commit 9af2f9e0da
2 changed files with 14 additions and 12 deletions

View file

@ -1,3 +1,7 @@
Tue Feb 24 18:03:14 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* test/ruby/test_file.rb (test_fnmatch): test for dir.c:1.108.
Tue Feb 24 17:07:17 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* dir.c (fnmatch): File.fnmatch with FNM_PATHNAME was broken

View file

@ -14,15 +14,9 @@ class TestFile < Test::Unit::TestCase
r = File.open(filename, "r")
begin
if /(mswin|bccwin|mingw|emx)/ =~ RUBY_PLATFORM
begin
File.unlink(filename)
assert(false)
rescue Errno::EACCES
assert(true)
end
assert_raise(Errno::EACCES) {File.unlink(filename)}
else
File.unlink(filename)
assert(true)
assert_nothing_raised {File.unlink(filename)}
end
ensure
r.close
@ -43,7 +37,11 @@ class TestFile < Test::Unit::TestCase
def test_fnmatch
# from [ruby-dev:22815] and [ruby-dev:22819]
assert(true, File.fnmatch('\[1\]' , '[1]'))
assert(true, File.fnmatch('*?', 'a'))
assert(File.fnmatch('\[1\]' , '[1]'))
assert(File.fnmatch('*?', 'a'))
assert(File.fnmatch('*/', 'a/'))
assert(File.fnmatch('\[1\]' , '[1]', File::FNM_PATHNAME))
assert(File.fnmatch('*?', 'a', File::FNM_PATHNAME))
assert(File.fnmatch('*/', 'a/', File::FNM_PATHNAME))
end
end