Create a temporary directory for testing.
()
| 9 | |
| 10 | /// Create a temporary directory for testing. |
| 11 | fn create_temp_dir() -> TempDir { |
| 12 | TempDir::new().expect("Failed to create temp directory") |
| 13 | } |
| 14 | |
| 15 | /// Create a test change store in a temporary directory. |
| 16 | fn create_test_store() -> (ChangeStore, TempDir) { |
no outgoing calls
no test coverage detected