packlist: use prop_assert_eq
Dependencies
- [2]
VHLGEBT7packlist: less normalization to support proper roundtrips (which only truncate trailing spaces) - [3]
V4EAN7NNmove some stuff around; more packlist stuff - [4]
NAZOIBERpacklist: fix crash on empty input - [5]
7WMS7RLPpacklist: add support for parsing of multiple premarkers per item
Change contents
- replacement in crates/zhed-packlist/src/serial.rs at line 158
use alloc::{string::String, vec};use alloc::{format, string::String, vec}; - replacement in crates/zhed-packlist/src/serial.rs at line 207
assert_eq!(x1, x2);prop_assert_eq!(x1, x2); - replacement in crates/zhed-packlist/src/serial.rs at line 212
assert_eq!(s, s.parse::<PackList>().unwrap().to_string());prop_assert_eq!(&s, &s.parse::<PackList>().unwrap().to_string());