#[cfg(feature = "unicode-emojis")]
pub mod emojis;
#[cfg(all(test, feature = "unicode-emojis"))]
mod tests {
#[test]
fn unicode_emojis_reexports_generated_data() {
let emoji = super::emojis::find_by_search_term("smile").expect("smile exists");
assert_eq!(emoji.unicode_version, super::emojis::UNICODE_EMOJI_VERSION);
}
}