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

Word array instead of splitting

This commit is contained in:
Nobuyoshi Nakada 2020-03-08 17:39:22 +09:00
parent 2b7409a2f2
commit daa04c5562
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -63,7 +63,7 @@ class Test_StringNormalize < Test::Unit::TestCase
end end
def test_not_normalize_kc def test_not_normalize_kc
%[ %W[
\u2460 \u2460
\u2162 \u2162
\u3349 \u3349
@ -74,7 +74,7 @@ class Test_StringNormalize < Test::Unit::TestCase
\u2121 \u2121
\u32A4 \u32A4
\u3231 \u3231
].split.each do |src| ].each do |src|
result = Bug::String.new(src).normalize_ospath result = Bug::String.new(src).normalize_ospath
assert_equal src, result, assert_equal src, result,
"#{src.dump} is expected not to be normalized, but #{result.dump}" "#{src.dump} is expected not to be normalized, but #{result.dump}"
@ -82,7 +82,7 @@ class Test_StringNormalize < Test::Unit::TestCase
end end
def test_dont_normalize_hfsplus def test_dont_normalize_hfsplus
%[ %W[
\u2190\u0338 \u2190\u0338
\u219A \u219A
\u212B \u212B
@ -95,7 +95,7 @@ class Test_StringNormalize < Test::Unit::TestCase
\uFA10 \uFA10
\uFA19 \uFA19
\uFA26 \uFA26
].split.each do |src| ].each do |src|
result = Bug::String.new(src).normalize_ospath result = Bug::String.new(src).normalize_ospath
assert_equal src, result, assert_equal src, result,
"#{src.dump} is expected not to be normalized, but #{result.dump}" "#{src.dump} is expected not to be normalized, but #{result.dump}"