diff options
| author | Tristan Nicholls <tvkn@users.noreply.github.com> | 2022-07-26 21:01:09 +0200 |
|---|---|---|
| committer | Tristan Nicholls <tvkn@users.noreply.github.com> | 2022-07-26 21:01:09 +0200 |
| commit | a56f648ccefc18292c2fbc2e61043348c7cde79d (patch) | |
| tree | 6e09bbea2a4b8a79b34cc198c61411992912fab3 /exercises/options/options1.rs | |
| parent | 39635598105264b8d60d5ad0c73d554a58dbf557 (diff) | |
feat(options1): update expected result
Expected result is updated to better showcase the difference between
- a valid result with no ice-creams `Some(0)`, and
- an invalid result `None`.
Diffstat (limited to 'exercises/options/options1.rs')
| -rw-r--r-- | exercises/options/options1.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/exercises/options/options1.rs b/exercises/options/options1.rs index 038fb48..c93ffba 100644 --- a/exercises/options/options1.rs +++ b/exercises/options/options1.rs @@ -14,6 +14,7 @@ fn print_number(maybe_number: Option<u16>) { // TODO: Return an Option! fn maybe_icecream(time_of_day: u16) -> Option<u16> { // We use the 24-hour system here, so 10PM is a value of 22 + // The Option output should gracefully handle cases where time_of_day > 24. ??? } @@ -24,8 +25,9 @@ mod tests { #[test] fn check_icecream() { assert_eq!(maybe_icecream(10), Some(5)); - assert_eq!(maybe_icecream(23), None); - assert_eq!(maybe_icecream(22), None); + assert_eq!(maybe_icecream(23), Some(0)); + assert_eq!(maybe_icecream(22), Some(0)); + assert_eq!(maybe_icecream(25), None); } #[test] |
