Expand description
Filesystem assertions.
See PathAssert.
§Examples
use assert_fs::prelude::*;
use predicates::prelude::*;
let temp = assert_fs::TempDir::new().unwrap();
let input_file = temp.child("foo.txt");
input_file.touch().unwrap();
// ... do something with input_file ...
input_file.assert("");
temp.child("bar.txt").assert(predicate::path::missing());
temp.close().unwrap();Structs§
- Bytes
Content Path Predicate - Keep
predicatesconcrete Predicates out of our public API.predicates_core::Predicateused byIntoPathPredicatefor bytes. - StrContent
Path Predicate - Keep
predicatesconcrete Predicates out of our public API.predicates_core::Predicateused byIntoPathPredicateforstr. - StrPath
Predicate - Keep
predicatesconcrete Predicates out of our public API.predicates_core::Predicateused byIntoPathPredicateforstrpredicates.
Traits§
- Into
Path Predicate - Used by
PathAssertto convert Self into the neededpredicates_core::Predicate<Path>. - Path
Assert - Assert the state of files within
TempDir.