Trait assert_fs::assert::PathAssert[][src]

pub trait PathAssert {
    fn assert<I, P>(&self, pred: I) -> &Self
    where
        I: IntoPathPredicate<P>,
        P: Predicate<Path>
; }

Assert the state of files within TempDir.

Examples

This example is not tested
use assert_fs::*;
use predicates::*;

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();

Required Methods

Important traits for &'a mut R

Wrap with an interface for that provides assertions on the TempDir.

Implementors