macro_rules! assert_vfs_mkdir_p {
    ($vfs:expr, $path:expr) => { ... };
}
Expand description

Assert the creation of the given directory.

Examples

use rivia::prelude::*;

let vfs = Vfs::memfs();
assert_vfs_no_dir!(vfs, "foo");
assert_vfs_mkdir_p!(vfs, "foo");
assert_vfs_is_dir!(vfs, "foo");