diff options
-rwxr-xr-x | tests/it.t | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -355,6 +355,8 @@ is(it::ucwords('foo bär über'), 'Foo Bär Über'); is(it::substr_replace('abcdefgh', 'xyz', 2, 4), substr_replace('abcdefgh', 'xyz', 2, 4), 'it::substr_replace the same as substr_replace for ascii'); is(it::substr_replace('✔☯♥', '☃☃', 1, 1), '✔☃☃♥', 'it::substr_replace for utf-8'); +is(grapheme_strlen("\xc1"), null, "need grapheme_strlen side effect for any2utf8"); + is(it::any2utf8('Meier'), 'Meier', "it::any2utf8 ascii input"); is(it::any2utf8('Müller'), 'Müller', "it::any2utf8 utf8 input"); is(it::any2utf8('Aslı'), 'Aslı', "it::any2utf8 utf8 non-latin1 input"); |