sourcetrait_testing 0.0.0-2

Structured testing with setup, teardown, and standardized fixture and temp directories
Documentation
pub fn main() {} // remove this

#[cfg(test)]
mod tests {
    use sourcetrait_testing::prelude::*;

    static TESTING: testing::Module = testing::module!(Integration, {
        .using_fixture_dir()
        .using_temp_dir()
    });

    #[tested]
    fn test_intg() {
        let test = testing::test!({
            .inherit_fixture_dir()
            .using_temp_dir()
        });

        assert!(test.fixture_dir().exists())
    }
}