7FYXVNAB6JAP3CJKE4MY57UWYSUPEXFVER6K264BSKYHVU6V4SGQC
AAERM7PBDVDFDEEXZ7UJ5WWQF7SPEJQQYXRBZ63ETB5YAVIECHMAC
XEEXWJLGVIPIGURSDU4ETZMGAIFTFDPECM4QWFOSRHU7GMGVOUVQC
VNSHGQYNPGKGGPYNVP4Z2RWD7JCSDJVYAADD6UXWBYL6ZRXKLE4AC
6ABVDTXZOHVUDZDKDQS256F74LFIMM5DO3OZWHKRXZBUTPII4WAQC
QFPQZR4K4UZ7R2GQZJG4NYBGVQJVL2ANIKGGTOHAMIRIBQHPSQGAC
//! A basic end-to-end test for the example at https://projectfluent.org/fluent/guide/selectors.html
//! End-to-end tests for the example at https://projectfluent.org/fluent/guide/selectors.html
pub enum Messages {
pub enum Message {
impl Messages {
impl Message {
let data = Messages::Emails { unread_emails };
let data = Message::Emails { unread_emails };
# Selectors example from Fluent guide: https://projectfluent.org/fluent/guide/selectors.html
Entry::Comment(_) => todo!(), Entry::GroupComment(_) => todo!(), Entry::ResourceComment(_) => todo!(),
Entry::Comment(_) => todo!(),
Entry::GroupComment(_) => todo!(),
Entry::ResourceComment(_) => todo!(),
// Ignore comments Entry::Comment(_) | Entry::GroupComment(_) | Entry::ResourceComment(_) => continue,
// Ignore comments
Entry::Comment(_) | Entry::GroupComment(_) | Entry::ResourceComment(_) => continue,