Crates.io | assert_cmd |
lib.rs | assert_cmd |
version | 2.0.16 |
source | src |
created_at | 2018-05-28 20:57:36.584641 |
updated_at | 2024-08-09 01:40:53.120169 |
description | Test CLI Applications. |
homepage | https://github.com/assert-rs/assert_cmd |
repository | https://github.com/assert-rs/assert_cmd.git |
max_upload_size | |
id | 67510 |
size | 111,875 |
Assert
process::Command
- Easy command initialization and assertions.
assert_cmd
aims to simplify the process for doing integration testing of CLIs, including:
Here's a trivial example:
use assert_cmd::Command;
let mut cmd = Command::cargo_bin("bin_fixture").unwrap();
cmd.assert().success();
See the docs for more.
Other crates that might be useful in testing command line programs.
assert_fs
for filesystem fixtures and assertions.
Licensed under either of
at your option.
fitzgen
assert_cmd is just such a pleasure to use every single time, I fall in love all over again
bravo bravo WG-cli
passcod
Running commands and dealing with output can be complex in many many ways, so assert_cmd smoothing that is excellent, very much welcome, and improves ergonomics significantly.
volks73
I have used [assert_cmd] in other projects and I am extremely pleased with it
coreyja
[assert_cmd] pretty much IS my testing strategy so far, though my app under test is pretty small.
This library has made it really easy to add some test coverage to my project, even when I am just learning how to write Rust!
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.