Attempt at a Rust port of fixturify NPM package. The high level goal is to provide a way to create a directory structure in a test without having to create each individual file and directory imperatively.
The most common use will be to leverage the fixture!
macro like:
let macro_fixture = fixture! {
"fileHere.txt" => "other contents",
"otherFile" => "lol yesss",
"subdirThere" => {
"subdirFile" => "subdir contents",
},
};