Filesystem change directory coverage.

This commit is contained in:
Andrés N. Robalino
2019-09-08 03:09:05 -05:00
parent eecda3ecba
commit df9ff44956
2 changed files with 106 additions and 34 deletions

View File

@@ -227,8 +227,14 @@ impl Playground {
playground_root.join(topic).display()
));
let root =
dunce::canonicalize(playground_root).expect(&format!(
"Couldn't canonicalize tests root path {}",
playground_root.display()
));
let dirs = Dirs {
root: PathBuf::from(playground_root),
root,
test,
fixtures,
};