Merge pull request #522 from calvinbrown085/adding-test-for-false-case

This commit is contained in:
fmoko 2020-09-27 17:05:42 +02:00 committed by GitHub
commit 2a682abeef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

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