Create a temporary directory for testing.
()
| 10 | |
| 11 | /// Create a temporary directory for testing. |
| 12 | fn temp_dir() -> TempDir { |
| 13 | tempfile::tempdir().expect("Failed to create temp dir") |
| 14 | } |
| 15 | |
| 16 | /// Create a FileSystem rooted at a temporary directory. |
| 17 | fn temp_fs() -> (TempDir, FileSystem) { |
no outgoing calls
no test coverage detected