[][src]Trait assert_fs::fixture::PathChild

pub trait PathChild {
    fn child<P>(&self, path: P) -> ChildPath
    where
        P: AsRef<Path>
; }

Access paths within TempDir for testing.

See ChildPath trait implementations.

use assert_fs::prelude::*;

let temp = assert_fs::TempDir::new().unwrap();
let input_file = temp.child("foo.txt");
input_file.touch().unwrap();
temp.close().unwrap();

Required methods

fn child<P>(&self, path: P) -> ChildPath where
    P: AsRef<Path>, 

Access a path within the temp directory.

Examples

use assert_fs::prelude::*;

let temp = assert_fs::TempDir::new().unwrap();
println!("{}", temp.path().display());
println!("{}", temp.child("foo/bar.txt").path().display());
temp.close().unwrap();
Loading content...

Implementors

impl PathChild for ChildPath[src]

impl PathChild for TempDir[src]

Loading content...