Crates.io | trycmd-indygreg-fork |
lib.rs | trycmd-indygreg-fork |
version | 0.14.20 |
source | src |
created_at | 2023-11-06 09:19:27.710914 |
updated_at | 2023-11-06 09:19:27.710914 |
description | Snapshot testing for a herd of CLI tests |
homepage | https://github.com/assert-rs/trycmd |
repository | https://github.com/assert-rs/trycmd.git |
max_upload_size | |
id | 1026630 |
size | 153,251 |
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
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.