Crate assert_cmd[−][src]
Assert process::Command
- Easy command initialization and assertions.
[dependencies]
assert_cmd = "0.5"
Example
Here's a trivial example:
ⓘThis example is not tested
extern crate assert_cmd; use std::process::Command; use assert_cmd::prelude::*; fn main() { let mut cmd = Command::main_binary().unwrap(); cmd.assert().success(); }
Relevant crates
Other crates that might be useful in testing command line programs.
Re-exports
pub use assert::Assert; |
pub use assert::OutputAssertExt; |
Modules
assert |
|
cargo |
Simplify running |
prelude |
Extension traits that are useful to have available. |
Structs
OutputError |
|
StdInCommand |
|
Traits
CommandStdInExt |
Write to |
OutputOkExt |
Convert an |
Type Definitions
OutputResult |
|