Started writing more tests in the handlers

This commit is contained in:
2023-08-08 10:50:05 -06:00
parent 4fa2ce6aee
commit c15bda5885
7 changed files with 428 additions and 10 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ mod tests {
fn test_strop_non_alphanumeric_characters() {
assert_eq!(
strip_non_alphanumeric_characters("Te$t S7r!ng::'~-_}"),
String::from("tet s7rng")
"tet s7rng".to_owned()
)
}
}