cli_tests.rs 338 B

12345678910111213141516171819
  1. #[test]
  2. fn cli_all_tests() {
  3. trycmd::TestCases::new()
  4. .case("tests/cmd/*_all.toml");
  5. }
  6. #[test]
  7. #[cfg(unix)]
  8. fn cli_unix_tests() {
  9. trycmd::TestCases::new()
  10. .case("tests/cmd/*_unix.toml");
  11. }
  12. #[test]
  13. #[cfg(windows)]
  14. fn cli_windows_tests() {
  15. trycmd::TestCases::new()
  16. .case("tests/cmd/*_windows.toml");
  17. }