1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-18 23:41:37 +02:00

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
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

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