(root: &Path)
| 221 | } |
| 222 | |
| 223 | async fn create_dirs(root: &Path) -> (PathBuf, PathBuf) { |
| 224 | let src = root.join("a"); |
| 225 | let dst = root.join("b"); |
| 226 | fs::create_dir(&src).await.unwrap(); |
| 227 | fs::create_dir(&dst).await.unwrap(); |
| 228 | |
| 229 | (src, dst) |
| 230 | } |
no test coverage detected
searching dependent graphs…