use proptest::prelude::*;
use xspf::Playlist;
proptest! {
#![proptest_config(ProptestConfig::with_cases(50))]
#[test]
fn parse_no_panic(src: Vec<u8>) {
let _ = Playlist::read_from(&mut &src[..]);
}
#[test]
#[cfg(feature = "proptest")]
fn print_no_panic(playlist: Playlist) {
let _ = playlist.to_string();
}
}