caesura 0.31.0

An all-in-one command line tool to transcode FLAC audio files and upload to gazelle based indexers/trackers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Test-specific imports extending the main prelude.

pub(crate) use crate::prelude::*;
pub(crate) use gazelle_api::{
    ApiResponseError, Credit, Credits, ErrorSource, GroupResponse, MockGazelleClient,
    TorrentResponse, UploadResponse,
};
pub(crate) use insta::{assert_snapshot, assert_yaml_snapshot};
pub(crate) use qbittorrent_api::mock::MockQBittorrentClient;
pub(crate) use std::fs::{copy, metadata, read, remove_dir_all, remove_file, write};
pub(crate) use tokio::sync::OnceCell;

/// Type alias for test error results.
pub(crate) type TestError = Box<dyn Error + Send + Sync>;