1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-06-23 00:28:46 +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

View File

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