]> git.r.bdr.sh - rbdr/page/blobdiff - src/file_handler/file_strategies/file.rs
Fix test
[rbdr/page] / src / file_handler / file_strategies / file.rs
index e5573a26f43d4e1a9cab3b8cfc60556afc4fa762..363f71268d9b0afe30bc2457a5faf4c1dfdae586 100644 (file)
@@ -90,14 +90,13 @@ mod tests {
         create_dir_all(&source_dir).expect("Could not create source test directory");
         create_dir_all(&output_dir).expect("Could not create output test directory");
         create_test_file(&source_dir.join("image.png"), "A fish playing the banjo");
-        let strategy = Strategy {};
 
         let file = File {
             path: source_dir.join("image.png"),
             file_type: FileType::File,
         };
 
-        strategy.handle(&source_dir, &output_dir, &file);
+        Strategy::handle(&source_dir, &output_dir, &file);
 
         let copied_path = &output_dir.join("image.png");
         assert!(copied_path.exists());
@@ -120,14 +119,13 @@ mod tests {
             &source_dir.join("nested/style.css"),
             "* { margin: 0; padding: 0 }",
         );
-        let strategy = Strategy {};
 
         let file = File {
             path: source_dir.join("nested/style.css"),
             file_type: FileType::File,
         };
 
-        strategy.handle(&source_dir, &output_dir, &file);
+        Strategy::handle(&source_dir, &output_dir, &file);
 
         let copied_path = output_dir.join("nested/style.css");
         assert!(copied_path.exists());