59 releases

new 0.15.2 May 15, 2024
0.15.0 Feb 14, 2024
0.14.19 Oct 2, 2023
0.14.16 Apr 13, 2023
0.8.2 Nov 30, 2021

#18 in Testing

Download history 9642/week @ 2024-01-24 11383/week @ 2024-01-31 9622/week @ 2024-02-07 9228/week @ 2024-02-14 15639/week @ 2024-02-21 22800/week @ 2024-02-28 27617/week @ 2024-03-06 21508/week @ 2024-03-13 20218/week @ 2024-03-20 11807/week @ 2024-03-27 11239/week @ 2024-04-03 10651/week @ 2024-04-10 8751/week @ 2024-04-17 9775/week @ 2024-04-24 10532/week @ 2024-05-01 9861/week @ 2024-05-08

40,680 downloads per month
Used in 89 crates (77 directly)

MIT/Apache

310KB
7.5K 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

~4–14MB
~186K SLoC