diff --git a/src/lib.rs b/src/lib.rs index 96b64e9..17f0574 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,6 @@ pub mod filesystem; #[cfg(test)] mod tests { - use crate::filesystem::Fileify; #[cfg(feature = "dom")] #[test] @@ -33,6 +32,7 @@ mod tests { #[cfg(feature = "fs")] #[test] fn fs() { + use crate::filesystem::Fileify; if let Ok(_) = std::path::Path::new("./file").ensure_file() { let _ = std::fs::remove_file("./file"); }