File tree Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -615,20 +615,20 @@ mod tests {
615615 Ok ( ( ) )
616616 }
617617
618- #[ test]
619- fn remove_dir_all_custom ( ) -> io:: Result < ( ) > {
620- use rust_embed:: Embed ;
621- let path = Path :: new ( "test_files" ) ;
622- if path. is_dir ( ) {
623- fs:: remove_dir_all ( path) ?;
624- fs:: create_dir_all ( path) ?;
625- } else if path. is_file ( ) {
626- fs:: remove_file ( path) ?;
627- fs:: create_dir_all ( path) ?;
628- } else {
629- fs:: create_dir_all ( path) ?;
630- }
631- test_make_test_file ( ) ?;
632- Ok ( ( ) )
633- }
618+ // #[test]
619+ // fn remove_dir_all_custom() -> io::Result<()> {
620+ // use rust_embed::Embed;
621+ // let path = Path::new("test_files");
622+ // if path.is_dir() {
623+ // fs::remove_dir_all(path)?;
624+ // fs::create_dir_all(path)?;
625+ // } else if path.is_file() {
626+ // fs::remove_file(path)?;
627+ // fs::create_dir_all(path)?;
628+ // } else {
629+ // fs::create_dir_all(path)?;
630+ // }
631+ // test_make_test_file()?;
632+ // Ok(())
633+ // }
634634}
You can’t perform that action at this time.
0 commit comments