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

Assert that the given path isn’t a file

Examples

use rivia::prelude::*;

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