caesura 0.22.3

An all-in-one command line tool to **transcode FLAC** audio files and **upload to gazelle** based indexers/trackers.
Documentation
use super::super::*;
use crate::fs::DirectoryReader;
use rogue_logging::Error;
use std::path::PathBuf;

#[tokio::test]
#[ignore]
async fn show() -> Result<(), Error> {
    // Arrange
    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");

    // Act
    println!("{path:?}");
    let output = EyeD3Command::display(path).await?;
    println!("{output}");

    // Assert
    assert!(!output.is_empty());

    Ok(())
}