add test-case to if/if1 to check equal values

pull/1599/head
Gabor Szabo 1 year ago
parent b949422d46
commit 7f9f897945

@ -25,4 +25,9 @@ mod tests {
fn fortytwo_is_bigger_than_thirtytwo() {
assert_eq!(42, bigger(32, 42));
}
#[test]
fn equal_numbers() {
assert_eq!(42, bigger(42, 42));
}
}

Loading…
Cancel
Save