65 releases

0.15.8 Oct 29, 2024
0.15.6 Jul 25, 2024
0.15.0 Feb 14, 2024
0.14.19 Oct 2, 2023
0.8.2 Nov 30, 2021

#45 in Testing

Download history 19144/week @ 2024-08-03 19108/week @ 2024-08-10 23274/week @ 2024-08-17 22035/week @ 2024-08-24 23899/week @ 2024-08-31 23219/week @ 2024-09-07 20079/week @ 2024-09-14 22406/week @ 2024-09-21 20014/week @ 2024-09-28 22230/week @ 2024-10-05 24060/week @ 2024-10-12 20551/week @ 2024-10-19 21249/week @ 2024-10-26 20704/week @ 2024-11-02 21837/week @ 2024-11-09 23454/week @ 2024-11-16

90,072 downloads per month
Used in 100 crates (88 directly)

MIT/Apache

370KB
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
~170K SLoC