Trait assert_cmd::OutputAssertExt [−][src]
Assert the state of an Output.
Examples
use assert_cmd::prelude::*; use std::process::Command; Command::main_binary() .unwrap() .assert() .success();
Required Methods
fn assert(self) -> Assert
Wrap with an interface for that provides assertions on the process::Output.
Examples
use assert_cmd::prelude::*; use std::process::Command; Command::main_binary() .unwrap() .assert() .success();
Implementations on Foreign Types
impl OutputAssertExt for Output[src]
impl OutputAssertExt for Outputimpl<'c> OutputAssertExt for &'c mut Command[src]
impl<'c> OutputAssertExt for &'c mut CommandImplementors
impl<'c> OutputAssertExt for &'c mut StdInCommand