Trait OutputAssertExt
Source pub trait OutputAssertExt {
// Required method
fn assert(self) -> Assert;
}
Expand description
Assert the state of an Output
.
§Examples
use assert_cmd::prelude::*;
use std::process::Command;
let mut cmd = Command::cargo_bin("bin_fixture")
.unwrap();
cmd.assert()
.success();
Wrap with an interface for that provides assertions on the Output
.
§Examples
use assert_cmd::prelude::*;
use std::process::Command;
let mut cmd = Command::cargo_bin("bin_fixture")
.unwrap();
cmd.assert()
.success();