1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-01-26 04:22:03 +02:00

22 lines
454 B
Rust
Raw Normal View History

2018-02-21 22:09:53 -08:00
// tests3.rs
2015-09-20 18:31:41 -04:00
// This test isn't testing our function -- make it do that in such a way that
2019-01-23 20:48:01 +01: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` for hints :)
2015-09-20 18:31:41 -04: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 20:48:01 +01:00
assert!();
2015-09-20 18:31:41 -04:00
}
}