1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
use super::*; use crate::zerror; mod file; mod path; #[test] fn test_mod() { let _ = zerror::try_catch(|| { path::test_dir(); path::test_path(); path::project_dir_type(); file::test_file(); Ok(()) }); let _ = remove("tmp", false); }