diff options
| author | fmoko <mokou@posteo.de> | 2020-09-27 17:05:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-27 17:05:42 +0200 |
| commit | 2a682abeef1296ecc4e87e690f2af7371c806228 (patch) | |
| tree | 4744a104987b8202d61f237a2738982df4399ce3 /exercises | |
| parent | 9f38b54a2dfe5901605ee57541666033c6682e2b (diff) | |
| parent | bec97b6c76bea09d3a326bb94f9375a5698095e6 (diff) | |
Merge pull request #522 from calvinbrown085/adding-test-for-false-case
Diffstat (limited to 'exercises')
| -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!(); + } } |
