Merge pull request #1546 from b-apperlo/b-apperlo-patch-1

feat: added test function to hashmaps2.rs
This commit is contained in:
liv 2023-06-12 12:20:36 +02:00 committed by GitHub
commit 171d20ce3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -80,4 +80,13 @@ mod tests {
let count = basket.values().sum::<u32>();
assert!(count > 11);
}
#[test]
fn all_fruit_types_in_basket() {
let mut basket = get_fruit_basket();
fruit_basket(&mut basket);
for amount in basket.values() {
assert_ne!(amount, &0);
}
}
}