|
|
@@ -1,5 +1,19 @@
|
|
|
#[test]
|
|
|
-fn cli_tests() {
|
|
|
+fn cli_all_tests() {
|
|
|
trycmd::TestCases::new()
|
|
|
- .case("tests/cmd/*.toml");
|
|
|
+ .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");
|
|
|
}
|