use libsip::{headers::parse::parse_alert_info_header, Header}; use nom::error::VerboseError; #[test] fn write() { let header = Header::AlertInfo("".into()); assert_eq!( "Alert-Info: ".to_string(), format!("{}", header) ); } #[test] fn read() { let remains = vec![]; let header = Header::AlertInfo("".into()); assert_eq!( Ok((remains.as_ref(), header)), parse_alert_info_header::>( b"Alert-Info: \r\n" ) ); }