mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2025-01-05 16:58:45 +00:00
069b7bfc97
We have really good debug/trace logs now. Having them available for test failures is a huge help.
11 lines
302 B
Rust
11 lines
302 B
Rust
use lofty::aac::AacFile;
|
|
use lofty::config::ParseOptions;
|
|
use lofty::file::AudioFile;
|
|
|
|
#[test_log::test]
|
|
fn panic1() {
|
|
let mut reader = crate::get_reader(
|
|
"aacfile_read_from/01 - aalborg_IDX_9_RAND_168952727934877251846138.mp3",
|
|
);
|
|
let _ = AacFile::read_from(&mut reader, ParseOptions::new());
|
|
}
|