summaryrefslogtreecommitdiff
path: root/tests/runewidth.ha
blob: 5e570a5ae96278a8d7bc4badda32875989b4747b (plain)
1
2
3
4
5
6
7
8
9
use tui;

@test
fn runewidth() void = {
	assert(tui::runewidth('f') == 1);
	assert(tui::runewidth('大') == 2);
	assert(tui::runewidth('ぁ') == 2);
	assert(tui::runewidth('😀') == 2);
};