mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
686b0379ce
`multicall` allows you to have one binary expose itself as multiple programs, like busybox does. This also works well for user clap for parsing REPLs. Fixes #2861
31 lines
831 B
Rust
31 lines
831 B
Rust
#![cfg(not(tarpaulin))]
|
|
|
|
#[test]
|
|
fn example_tests() {
|
|
let t = trycmd::TestCases::new();
|
|
let features = [
|
|
#[cfg(feature = "std")]
|
|
"std",
|
|
#[cfg(feature = "derive")]
|
|
"derive",
|
|
#[cfg(feature = "cargo")]
|
|
"cargo",
|
|
#[cfg(feature = "color")]
|
|
"color",
|
|
#[cfg(feature = "env")]
|
|
"env",
|
|
#[cfg(feature = "suggestions")]
|
|
"suggestions",
|
|
#[cfg(feature = "unicode")]
|
|
"unicode",
|
|
#[cfg(feature = "wrap_help")]
|
|
"wrap_help",
|
|
#[cfg(feature = "unstable-replace")]
|
|
"unstable-replace",
|
|
#[cfg(feature = "unstable-grouped")]
|
|
"unstable-grouped",
|
|
]
|
|
.join(" ");
|
|
t.register_bins(trycmd::cargo::compile_examples(["--features", &features]).unwrap());
|
|
t.case("examples/**/*.md");
|
|
}
|