clap/clap_complete/tests/examples.rs
2022-04-27 09:03:47 -05:00

13 lines
366 B
Rust

#![cfg(not(tarpaulin))]
#[test]
fn example_tests() {
let t = trycmd::TestCases::new();
let features: &[&str] = &[
#[cfg(feature = "unstable-dynamic")]
"unstable-dynamic",
];
let features = features.join(" ");
t.register_bins(trycmd::cargo::compile_examples(["--features", &features]).unwrap());
t.case("examples/**/*.md");
}