add same value test case

This commit is contained in:
mmo 2022-08-25 10:06:38 +02:00
parent f6a37e28ba
commit 8a43dd9cfb

View File

@ -23,5 +23,11 @@ mod tests {
#[test]
fn fortytwo_is_bigger_than_thirtytwo() {
assert_eq!(42, bigger(32, 42));
}
#[test]
fn same_value(){
assert_eq!(42, bigger(42,42))
}
}