2018-02-22 01:09:53 -05:00
|
|
|
// tests3.rs
|
2023-05-29 13:39:08 -04:00
|
|
|
//
|
2015-09-20 18:31:41 -04:00
|
|
|
// This test isn't testing our function -- make it do that in such a way that
|
2023-05-29 13:39:08 -04:00
|
|
|
// the test passes. Then write a second test that tests whether we get the
|
|
|
|
// result we expect to get when we call `is_even(5)`.
|
|
|
|
//
|
|
|
|
// Execute `rustlings hint tests3` or use the `hint` watch subcommand for a
|
|
|
|
// hint.
|
2015-09-20 18:31:41 -04:00
|
|
|
|
2019-11-11 07:38:24 -05:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2015-09-20 18:31:41 -04:00
|
|
|
pub fn is_even(num: i32) -> bool {
|
|
|
|
num % 2 == 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn is_true_when_even() {
|
2019-01-23 14:48:01 -05:00
|
|
|
assert!();
|
2015-09-20 18:31:41 -04:00
|
|
|
}
|
2020-09-21 16:23:19 -04:00
|
|
|
|
|
|
|
#[test]
|
2020-10-10 07:11:57 -04:00
|
|
|
fn is_false_when_odd() {
|
2020-09-21 16:23:19 -04:00
|
|
|
assert!();
|
|
|
|
}
|
2015-09-20 18:31:41 -04:00
|
|
|
}
|