diff options
Diffstat (limited to 'tests/cli.rs')
-rw-r--r-- | tests/cli.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/cli.rs b/tests/cli.rs index 2d32e4d..3573113 100644 --- a/tests/cli.rs +++ b/tests/cli.rs @@ -58,6 +58,8 @@ fn test_help() { fn test_1() { let mut build = Command::cargo_bin("fpm").unwrap(); build.arg("build") + .arg("--target-dir") + .arg("build-test") .current_dir("tests/1"); build.assert() .success2() @@ -76,6 +78,8 @@ fn test_1() { fn test_2() { let mut build = Command::cargo_bin("fpm").unwrap(); build.arg("build") + .arg("--target-dir") + .arg("build-test") .current_dir("tests/2"); build.assert() .success2() |