Macro rivia::assert_vfs_no_exists
source · [−]macro_rules! assert_vfs_no_exists {
($vfs:expr, $path:expr) => { ... };
}Expand description
Assert the given path doesn’t exist
Examples
use rivia::prelude::*;
let vfs = Vfs::memfs();
assert_vfs_no_exists!(vfs, "foo");