1#![cfg(not(tarpaulin))]
2
3#[test]
4fn example_tests() {
5    let t = trycmd::TestCases::new();
6    let features: &[&str] = &[
7        #[cfg(feature = "unstable-dynamic")]
8        "unstable-dynamic",
9    ];
10    let features = features.join(" ");
11    t.register_bins(trycmd::cargo::compile_examples(["--features", &features]).unwrap());
12    t.case("examples/**/*.md");
13}
14