Skip to content
Snippets Groups Projects
Commit 3a9d1df0 authored by Junegunn Choi's avatar Junegunn Choi
Browse files

Fix unicode test case

parent 5c25984e
No related branches found
No related tags found
No related merge requests found
......@@ -473,9 +473,9 @@ class TestGoFZF < TestBase
def test_unicode_case
assert_equal %w[СТРОКА2 Строка4],
`printf "строКА1\\nСТРОКА2\\nстрока3\\nСтрока4" | fzf -fС`.split($/)
`ruby -e "puts %w[строКА1 СТРОКА2 строка3 Строка4]" | fzf -fС`.split($/)
assert_equal %w[строКА1 СТРОКА2 строка3 Строка4],
`printf "строКА1\\nСТРОКА2\\nстрока3\\nСтрока4" | fzf -fс`.split($/)
`ruby -e "puts %w[строКА1 СТРОКА2 строка3 Строка4]" | fzf -fс`.split($/)
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment