in helpers/ticket_fields/src/description.rs [54:57]
4 lines of code
1 McCabe index (conditional complexity)
fn test_try_from_empty_string() {
let err = TicketDescription::try_from("".to_string()).unwrap_err();
assert_eq!(err.to_string(), "The description cannot be empty");
}