summaryrefslogtreecommitdiff
path: root/exercises/tests/tests3.rs
diff options
context:
space:
mode:
authorCalvin Brown <cab025@protonmail.com>2020-09-21 15:23:19 -0500
committerCalvin Brown <cab025@protonmail.com>2020-09-21 15:23:19 -0500
commitbec97b6c76bea09d3a326bb94f9375a5698095e6 (patch)
tree91b726b426b394e56200d55140a421670c04b859 /exercises/tests/tests3.rs
parent9f61db5dbe38538cf06571fcdd5f806e7901e83a (diff)
Fixing test3 to have enough tests to make sure we test all cases
Diffstat (limited to 'exercises/tests/tests3.rs')
-rw-r--r--exercises/tests/tests3.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/exercises/tests/tests3.rs b/exercises/tests/tests3.rs
index 693b8aa..06cf7ea 100644
--- a/exercises/tests/tests3.rs
+++ b/exercises/tests/tests3.rs
@@ -18,4 +18,9 @@ mod tests {
fn is_true_when_even() {
assert!();
}
+
+ #[test]
+ fn is_false_when_even() {
+ assert!();
+ }
}