Updated test

This commit is contained in:
2025-10-10 14:11:01 -04:00
parent d9e43a80e4
commit c06d546ae7
2 changed files with 17 additions and 1 deletions

View File

@@ -116,7 +116,16 @@ mod tests {
result
);
assert_eq!(result.has_delimiter, true, "The {} variable has an issue finding the delimiter", result.key)
assert_eq!(result.has_delimiter, true, "The {} variable has an issue finding the delimiter", result.key);
match icarus_envy::utility::split_words(&result) {
Ok(allowed_origins) => {
assert_eq!(allowed_origins.len(), 2, "The amount of allowed origins does not match. {} {}", allowed_origins.len(), 2)
}
Err(err) => {
assert!(false, "Error: {:?}", err)
}
}
}
#[test]