diff options
| author | Calvin Brown <cab025@protonmail.com> | 2020-09-21 15:23:19 -0500 |
|---|---|---|
| committer | Calvin Brown <cab025@protonmail.com> | 2020-09-21 15:23:19 -0500 |
| commit | bec97b6c76bea09d3a326bb94f9375a5698095e6 (patch) | |
| tree | 91b726b426b394e56200d55140a421670c04b859 /exercises/tests/tests3.rs | |
| parent | 9f61db5dbe38538cf06571fcdd5f806e7901e83a (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.rs | 5 |
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!(); + } } |
