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

Assert the creation of a file. If the file exists no change is made

Examples

use rivia::prelude::*;

let vfs = Vfs::memfs();
assert_vfs_no_file!(vfs, "foo");
assert_vfs_mkfile!(vfs, "foo");
assert_vfs_is_file!(vfs, "foo");