#cli #command #assert #cli-test #duct #test

bin+lib trycmd-indygreg-fork

Snapshot testing for a herd of CLI tests

1 unstable release

0.14.20 Nov 6, 2023

#412 in Testing

Download history 274/week @ 2023-12-21 95/week @ 2023-12-28 85/week @ 2024-01-04 151/week @ 2024-01-11 90/week @ 2024-01-18 76/week @ 2024-01-25 114/week @ 2024-02-01 67/week @ 2024-02-08 78/week @ 2024-02-15 89/week @ 2024-02-22 109/week @ 2024-02-29 82/week @ 2024-03-07 77/week @ 2024-03-14 78/week @ 2024-03-21 90/week @ 2024-03-28 65/week @ 2024-04-04

319 downloads per month
Used in apple-codesign

MIT/Apache

315KB
7.5K SLoC

trycmd-indygreg-fork

This is a soft fork of https://github.com/assert-rs/trycmd that was created after the upstream maintainers didn't accept some PRs.

The main differentiating feature is the ability to create alternative file loaders. The hope is that one day a new trycmd like frontend/runner will be created and this fork can be retired. Or upstream can be convinced that the dynamic file loading patches merit being included in 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–15MB
~190K SLoC