#command #test-harness #assert #duct #cargo-test #test

dev bin+lib trycmd

Snapshot testing for a herd of CLI tests

61 releases

new 0.15.4 May 24, 2024
0.15.1 Apr 4, 2024
0.15.0 Feb 14, 2024
0.14.19 Oct 2, 2023
0.8.2 Nov 30, 2021

#16 in Testing

Download history 10975/week @ 2024-02-02 9129/week @ 2024-02-09 9608/week @ 2024-02-16 18849/week @ 2024-02-23 25079/week @ 2024-03-01 27910/week @ 2024-03-08 23000/week @ 2024-03-15 13809/week @ 2024-03-22 11820/week @ 2024-03-29 10338/week @ 2024-04-05 10051/week @ 2024-04-12 10103/week @ 2024-04-19 9660/week @ 2024-04-26 11581/week @ 2024-05-03 11572/week @ 2024-05-10 7890/week @ 2024-05-17

43,122 downloads per month
Used in 92 crates (80 directly)

MIT/Apache

355KB
9K SLoC

trycmd

Treat your tests like cattle, instead of pets

Documentation License Crates Status

trycmd is a test harness that will enumerate test case files and run them to verify the results, taking inspiration from trybuild and cram.

Example

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.

Users

License

Licensed under either of

at your option.

Contribution

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.

Dependencies

~3–13MB
~169K SLoC