Skip to main content

rustest_fixtures/
lib.rs

1//! This crate is a set of standard fixtures for rustest.
2//!
3//! This crate is pretty young and a the number of fixture is small.
4//! If you have a need for new standard fixture, issue or PR are welcomed.
5
6mod global;
7mod tempdir;
8mod tempfile;
9
10pub use global::Global;
11pub use tempdir::TempDir;
12pub use tempfile::TempFile;