feat: completed tests

This commit is contained in:
2026-09-13 01:13:24 +02:00
parent c7f0365fec
commit 5c1324aae8
3 changed files with 11 additions and 8 deletions
+3 -2
View File
@@ -13,11 +13,12 @@ fn main() {
mod tests {
// TODO: Import `is_even`. You can use a wildcard to import everything in
// the outer module.
use super::*;
#[test]
fn you_can_assert() {
// TODO: Test the function `is_even` with some values.
assert!();
assert!();
assert!(!is_even(1));
assert!(is_even(12));
}
}