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 2fb667e commit 0258d05Copy full SHA for 0258d05
src/lib.rs
@@ -269,6 +269,8 @@ mod test {
269
.collect::<HashSet<_>>();
270
assert!(
271
are_all_variants_valid(SYM, |c| {
272
+ // All text presentations are exactly 2 codepoints long as of
273
+ // Unicode 16.0, so this doesn't miss anything.
274
!(c.chars().count() == 1
275
&& require_presentation_selector.contains(&c.chars().next().unwrap()))
276
}),
@@ -285,6 +287,8 @@ mod test {
285
287
286
288
289
are_all_variants_valid(EMOJI, |c| {
290
291
292
293
294
0 commit comments