Fixing test3 to have enough tests to make sure we test all cases

This commit is contained in:
Calvin Brown 2020-09-21 15:23:19 -05:00
parent 9f61db5dbe
commit bec97b6c76
No known key found for this signature in database
GPG Key ID: 023E6AD62A996C32
1 changed files with 5 additions and 0 deletions

View File

@ -18,4 +18,9 @@ mod tests {
fn is_true_when_even() { fn is_true_when_even() {
assert!(); assert!();
} }
#[test]
fn is_false_when_even() {
assert!();
}
} }