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

Assert the state of files within TempDir.

This uses IntoPathPredicate to provide short-hands for common cases, accepting:

  • Predicate<Path> for validating a path.
  • Predicate<str> for validating the content of the file.
  • &[u8] or &str representing the content of the file.

See predicates for more predicates.

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

Required Methods§

source

fn assert<I, P>(&self, pred: I) -> &Self
where I: IntoPathPredicate<P>, P: Predicate<Path>,

Assert the state of files within TempDir.

This uses IntoPathPredicate to provide short-hands for common cases, accepting:

  • Predicate<Path> for validating a path.
  • Predicate<str> for validating the content of the file.
  • &[u8] or &str representing the content of the file.

See predicates for more predicates.

Panic

Will panic if the condition is not satisfied

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("");
// or
input_file.assert(predicate::str::is_empty());

temp.child("bar.txt").assert(predicate::path::missing());

temp.close().unwrap();

Object Safety§

This trait is not object safe.

Implementors§