Helper for cleaning up test directories
(dir: PathBuf)
| 31 | |
| 32 | // Helper for cleaning up test directories |
| 33 | fn cleanup_test_dir(dir: PathBuf) { |
| 34 | if dir.exists() { |
| 35 | let _ = fs::remove_dir_all(dir); |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | #[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] |
| 40 | struct TestConfig { |
no outgoing calls
no test coverage detected