fix(quiz3): Force an answer to Q2 (#672)

Add also an example of unimplemented!() macro.
This commit is contained in:
Pascal H 2021-03-16 10:14:25 +01:00 committed by GitHub
parent be9510539e
commit 0d894e6ff7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -24,6 +24,7 @@ mod tests {
#[test]
fn returns_twice_of_negative_numbers() {
// TODO write an assert for `times_two(-4)`
// TODO replace unimplemented!() with an assert for `times_two(-4)`
unimplemented!()
}
}