Macro rivia::assert_vfs_mkdir_m
source · [−]macro_rules! assert_vfs_mkdir_m {
($vfs:expr, $path:expr, $mode:expr) => { ... };
}Expand description
Assert the creation of the given directory with the given mode
Examples
use rivia::prelude::*;
let vfs = Vfs::memfs();
assert_vfs_no_dir!(vfs, "foo");
assert_vfs_mkdir_m!(vfs, "foo", 0o40777);
assert_vfs_is_dir!(vfs, "foo");