2018-02-22 13:09:53 +07:00
|
|
|
// tests3.rs
|
2015-09-21 04:31:41 +06:00
|
|
|
// This test isn't testing our function -- make it do that in such a way that
|
2021-04-25 04:15:00 +07:00
|
|
|
// the test passes, but just replace the ???
|
2019-11-11 22:51:38 +07:00
|
|
|
// Execute `rustlings hint tests3` for hints :)
|
2015-09-21 04:31:41 +06:00
|
|
|
|
2019-11-11 19:38:24 +07:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2021-04-25 04:15:00 +07:00
|
|
|
// Don't modify this function
|
2015-09-21 04:31:41 +06:00
|
|
|
pub fn is_even(num: i32) -> bool {
|
|
|
|
num % 2 == 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn is_true_when_even() {
|
2021-04-25 04:15:00 +07:00
|
|
|
assert!(???);
|
2015-09-21 04:31:41 +06:00
|
|
|
}
|
2020-09-22 03:23:19 +07:00
|
|
|
|
|
|
|
#[test]
|
2020-10-10 18:11:57 +07:00
|
|
|
fn is_false_when_odd() {
|
2021-04-25 04:15:00 +07:00
|
|
|
assert_eq!(false, ???);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn is_false_when_odd2() {
|
|
|
|
assert_ne!(true, ???);
|
2020-09-22 03:23:19 +07:00
|
|
|
}
|
2015-09-21 04:31:41 +06:00
|
|
|
}
|