#[cfg(test)]
mod tests {
use sourcetrait_testing::prelude::*;
static TESTING: testing::Module = testing::module!(Integration, {
.using_fixture_dir()
.using_temp_dir()
});
#[tested]
fn test_usage() {
let test = testing::test!({
.inherit_fixture_dir()
.using_temp_dir()
});
assert!(test.fixture_dir().exists())
}
}