| Crates.io | trycmd |
| lib.rs | trycmd |
| version | 0.15.10 |
| created_at | 2021-11-05 20:47:17.007212+00 |
| updated_at | 2025-07-10 19:16:17.879662+00 |
| description | Snapshot testing for a herd of CLI tests |
| homepage | |
| repository | https://github.com/assert-rs/snapbox/ |
| max_upload_size | |
| id | 477497 |
| size | 151,731 |
Treat your tests like cattle, instead of pets
trycmd is a test harness that will enumerate test case files and run them to verify the
results, taking inspiration from
trybuild and cram.
To create a minimal setup, create a tests/cli_tests.rs with
#[test]
fn cli_tests() {
trycmd::TestCases::new()
.case("tests/cmd/*.toml")
.case("README.md");
}
and write out your test cases in .toml files along with examples in your README.md.
Run this with cargo test like normal. TestCases will enumerate all test case files and
run the contained commands, verifying they run as expected.
See the docs for more.
Cargo.toml editor)Licensed under either of
at your option.
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.