add a failing test

This commit is contained in:
Sylvestre Ledru
2023-04-23 20:25:32 +02:00
parent 1cb9f467c2
commit c9ba01123d
+6
View File
@@ -278,5 +278,11 @@ mod tests {
Err(ParseDurationError::InvalidInput) => assert!(true),
_ => assert!(false),
}
// Fails for now with a panic
/* let result = from_str("777777777777777771m");
match result {
Err(ParseDurationError::InvalidInput) => assert!(true),
_ => assert!(false),
}*/
}
}