1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
//! Filesystem fixtures and assertions for testing.
//!
//! ```toml
//! [dependencies]
//! assert_fs = "0.1"
//! ```

#![warn(missing_docs)]

extern crate failure;
extern crate globwalk;
extern crate tempfile;

mod fs;
pub use fs::*;

mod errors;
pub use errors::FixtureError;