| 12345678910111213141516171819202122232425262728293031323334 |
- #[test]
- fn cli_all_tests() {
- trycmd::TestCases::new().case("tests/cmd/*_all.toml");
- }
- #[test]
- #[cfg(unix)]
- fn cli_unix_tests() {
- trycmd::TestCases::new().case("tests/cmd/*_unix.toml");
- }
- #[test]
- #[cfg(windows)]
- fn cli_windows_tests() {
- trycmd::TestCases::new().case("tests/cmd/*_windows.toml");
- }
- #[test]
- #[cfg(feature = "nix-local")]
- fn cli_nix_local_tests() {
- trycmd::TestCases::new().case("tests/cmd/*_nix_local.toml");
- }
- #[test]
- #[cfg(feature = "powertest")]
- fn cli_powertest_tests() {
- trycmd::TestCases::new().case("tests/ptests/*.toml");
- }
- #[test]
- #[cfg(feature = "nix")]
- fn cli_nix_generated_tests() {
- trycmd::TestCases::new().case("tests/gen/*.toml");
- }
|