assert_fs 1.0.10

Filesystem fixtures and assertions for testing.
Documentation
//! Initialize the filesystem to use as test fixtures.

mod child;
mod dir;
mod errors;
mod file;
mod tools;

pub use self::child::*;
pub use self::dir::*;
pub use self::errors::*;
pub use self::file::*;
pub use self::tools::*;