1 2 3 4 5 6 7 8 9 10 11 12 13
pub(crate) use nouns::*; mod nouns; #[cfg(test)] mod tests { use super::*; #[test] fn test_accented() { assert_eq!(ABAZHUR.accented().collect::<String>(), "АБАЖУ́Р"); } }