We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae18631 commit 4a76978Copy full SHA for 4a76978
src/test.rs
@@ -34,6 +34,10 @@ fn test_graphemes() {
34
// family emoji (more than two emoji joined by ZWJ)
35
("\u{1f468}\u{200d}\u{1f467}\u{200d}\u{1f466}",
36
&["\u{1f468}\u{200d}\u{1f467}\u{200d}\u{1f466}"]),
37
+ // cartwheel emoji followed by two fitzpatrick skin tone modifiers
38
+ // (test case from issue #19)
39
+ ("\u{1F938}\u{1F3FE}\u{1F3FE}",
40
+ &["\u{1F938}\u{1F3FE}", "\u{1F3FE}"]),
41
];
42
43
for &(s, g) in TEST_SAME.iter().chain(EXTRA_SAME) {
0 commit comments