use super::super::*;
use crate::fs::DirectoryReader;
use rogue_logging::Error;
use std::path::PathBuf;
#[tokio::test]
#[ignore]
async fn show() -> Result<(), Error> {
let paths = DirectoryReader::new()
.with_extension("mp3")
.read(&PathBuf::from("./output"))
.expect("Directory should exist");
let path = paths.first().expect("Should be at least one sample");
println!("{path:?}");
let output = EyeD3Command::display(path).await?;
println!("{output}");
assert!(!output.is_empty());
Ok(())
}