ssstar-testing 0.7.3

Library of testing helpers to make it easier to write test fixtures. Not for use outside of ssstar crate. Breaking changes may ocurr without warning.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Testing helpers for use writing unit and integration tests of the `ssstar` crate
//!
//! This is internal to `ssstar` and is not intended for use by any other crates.  Breaking changes
//! can be made at any time.  The only reason this is published at all is that `cargo publish`
//! requires that all `dev-dependencies` be resolvable in the public registry.
pub mod logging;
pub mod minio;
pub mod tar;
pub mod test_data;

/// Test code that reports errors can just cheat and use `eyre`
pub type Result<T> = color_eyre::Result<T>;