v/vlib/encoding/utf8/east_asian/east_asian_width_test.v

24 lines
942 B
V
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

module east_asian
fn test_width() {
assert east_asian_width_property_at('A', 0) == .narrow
assert east_asian_width_property_at('', 0) == .full
assert east_asian_width_property_at('', 0) == .half
assert east_asian_width_property_at('', 0) == .wide
assert east_asian_width_property_at('', 0) == .ambiguous
assert east_asian_width_property_at('ج', 0) == .neutral
assert display_width('abc', 1) == 3
assert display_width('', 1) == 8
assert display_width('', 1) == 8
assert display_width('', 1) == 4
assert display_width('', 1) == 4
assert display_width('', 1) == 4
assert display_width('', 1) == 4
assert display_width('', 1) == 6
assert display_width('', 1) == 6
assert display_width(' िि', 1) == 9
assert display_width('', 1) == 1
assert display_width('', 2) == 2
assert display_width('🐈👽📛', 1) == 6
}