ssstar_testing/
lib.rs

1//! Testing helpers for use writing unit and integration tests of the `ssstar` crate
2//!
3//! This is internal to `ssstar` and is not intended for use by any other crates.  Breaking changes
4//! can be made at any time.  The only reason this is published at all is that `cargo publish`
5//! requires that all `dev-dependencies` be resolvable in the public registry.
6pub mod logging;
7pub mod minio;
8pub mod tar;
9pub mod test_data;
10
11/// Test code that reports errors can just cheat and use `eyre`
12pub type Result<T> = color_eyre::Result<T>;