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

add tests.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25780 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-11-15 16:24:45 +00:00
parent f5936bc835
commit 43bd807c43
2 changed files with 83 additions and 22 deletions

View file

@ -0,0 +1,49 @@
require 'test/unit'
require 'tmpdir'
require_relative 'envutil'
class TestDir_M17N < Test::Unit::TestCase
def with_tmpdir
Dir.mktmpdir {|dir|
Dir.chdir(dir) {
yield dir
}
}
end
def test_filename_bytes_euc_jp
with_tmpdir {|d|
assert_in_out(%w[-EEUC-JP], <<-'EOS', %w[true], nil, :chdir=>d)
filename = "\xA4\xA2".force_encoding("euc-jp")
File.open(filename, "w") {}
ents = Dir.entries(".")
ents.each {|e| e.force_encoding("ASCII-8BIT") }
p ents.include?(filename.force_encoding("ASCII-8BIT"))
EOS
}
end
def test_filename_euc_jp
with_tmpdir {|d|
assert_in_out(%w[-EEUC-JP], <<-'EOS', %w[true], nil, :chdir=>d)
filename = "\xA4\xA2".force_encoding("euc-jp")
File.open(filename, "w") {}
ents = Dir.entries(".")
p ents.include?(filename)
EOS
}
end
def test_filename_utf_8
with_tmpdir {|d|
assert_in_out(%w[-EUTF-8], <<-'EOS', %w[true], nil, :chdir=>d)
filename = "\u3042".force_encoding("utf-8")
File.open(filename, "w") {}
ents = Dir.entries(".")
p ents.include?(filename)
EOS
}
end
end