defs for user defined inflections

This commit is contained in:
Lewis Wynne 2025-03-11 15:54:15 +00:00
parent 4da4f86119
commit c48316e20f
2 changed files with 82 additions and 4 deletions

View file

@ -85,7 +85,7 @@ fn test_words() {
#[test]
fn test_word() {
let word = Word::new(String::from("fox"));
assert_eq!(word.unwrap().get(), "fox");
assert_eq!(word.expect("Failed to unwrap Word").get(), "fox");
}
#[test]