rustest-fixtures 0.2.0

Better test your program.
Documentation
1
2
3
4
5
6
7
8
9
10
//! This crate is a set of standard fixtures for rustest.
//!
//! This crate is pretty young and a the number of fixture is small.
//! If you have a need for new standard fixture, issue or PR are welcomed.

mod global;
mod tempfile;

pub use global::Global;
pub use tempfile::TempFile;