зеркало из https://github.com/github/ruby.git
test_dir_m17n.rb: fix ASCII-8BIT env
* test/ruby/test_dir_m17n.rb (test_glob_encoding): get rid of conversion when LC_ALL=C and filesystem encoding is ASCII-8BIT. [ruby-core:73868] [Bug #12081] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53881 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
68d4d7e41f
Коммит
ab86bab950
|
@ -375,7 +375,14 @@ class TestDir_M17N < Test::Unit::TestCase
|
|||
list << dir
|
||||
bug12081 = '[ruby-core:73868] [Bug #12081]'
|
||||
a = "*".force_encoding("us-ascii")
|
||||
assert_equal(list, Dir[a].map {|n| n.encode(Encoding::UTF_8)}.sort, bug12081)
|
||||
result = Dir[a].map {|n|
|
||||
if n.encoding == Encoding::ASCII_8BIT
|
||||
n.force_encoding(Encoding::UTF_8)
|
||||
else
|
||||
n.encode(Encoding::UTF_8)
|
||||
end
|
||||
}
|
||||
assert_equal(list, result.sort!, bug12081)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче