Skip to content

Commit 55e4259

Browse files
committed
Additional test (mutants)
1 parent 2531ef1 commit 55e4259

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

lightning-invoice/src/test_ser_de.rs

+13
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,19 @@ fn array_u8() {
5757
ser_de_test_len([255, 254, 253, 252, 251, 250, 249, 248, 247, 246], "lll0ml8mltul3alk");
5858
}
5959

60+
#[test]
61+
fn array_u8_error_invalid_length() {
62+
assert_eq!(
63+
<[u8; 3]>::from_base32(
64+
&"qqqs".to_string().chars().map(|c| Fe32::from_char(c).unwrap()).collect::<Vec<_>>()[..]
65+
)
66+
.err()
67+
.unwrap()
68+
.to_string(),
69+
"Slice had length 4 instead of 5 in function <[u8; N]>::from_base32()"
70+
);
71+
}
72+
6073
#[test]
6174
fn payment_secret() {
6275
let payment_secret = PaymentSecret([7; 32]);

0 commit comments

Comments
 (0)