Helper for creating test directories
()
| 24 | |
| 25 | // Helper for creating test directories |
| 26 | fn setup_test_dir() -> PathBuf { |
| 27 | let test_dir = temp_dir().join(format!("moosync_test_{}", uuid::Uuid::new_v4())); |
| 28 | fs::create_dir_all(&test_dir).expect("Failed to create test directory"); |
| 29 | test_dir |
| 30 | } |
| 31 | |
| 32 | // Helper for cleaning up test directories |
| 33 | fn cleanup_test_dir(dir: PathBuf) { |
no outgoing calls
no test coverage detected