• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #![cfg(not(tarpaulin))]
2 
3 #[test]
example_tests()4 fn 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