mirror of
https://github.com/clap-rs/clap
synced 2024-11-15 00:57:15 +00:00
1e2471649e
This is to prevent #3648 from happening again
33 lines
902 B
Rust
33 lines
902 B
Rust
#![cfg(not(tarpaulin))]
|
|
|
|
#[test]
|
|
fn ui_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-multicall")]
|
|
"unstable-multicall",
|
|
#[cfg(feature = "unstable-grouped")]
|
|
"unstable-grouped",
|
|
]
|
|
.join(" ");
|
|
t.register_bins(trycmd::cargo::compile_examples(["--features", &features]).unwrap());
|
|
t.case("tests/ui/*.toml");
|
|
}
|