Trait assert_fs::TempDirAssertExt[][src]

pub trait TempDirAssertExt {
    fn assert(&self, pred: &Predicate<Path>) -> &Self;
}

Assert the state of files within TempDir.

Examples

This example is not tested
use assert_fs::*;

let temp = assert_fs::TempDir::new().unwrap();
let input_file = temp.child("foo.txt");
input_file.touch().unwrap();
// ... do something with input_file ...
temp.child("bar.txt").assert(predicates::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