Skip to content

Commit 05224d6

Browse files
committed
Test partially successful uninstallation
1 parent cf58031 commit 05224d6

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

tests/install.rs

+21
Original file line numberDiff line numberDiff line change
@@ -970,3 +970,24 @@ fn uninstall_multiple_and_specifying_bin() {
970970
error: A binary can only be associated with a single installed package, specifying multiple specs with --bin is redundant.
971971
"));
972972
}
973+
974+
#[test]
975+
fn uninstall_multiple_and_some_pkg_does_not_exist() {
976+
pkg("foo", "0.0.1");
977+
978+
assert_that(cargo_process("install").arg("foo"),
979+
execs().with_status(0));
980+
981+
assert_that(cargo_process("uninstall").args(&["foo", "bar"]),
982+
execs().with_status(101).with_stderr(&format!("\
983+
[REMOVING] {home}[..]bin[..]foo[..]
984+
error: package id specification `bar` matched no packages
985+
986+
Summary: Successfully uninstalled foo! Failed to uninstall bar (see error(s) above).
987+
error: some packages failed to uninstall
988+
",
989+
home = cargo_home().display())));
990+
991+
assert_that(cargo_home(), is_not(has_installed_exe("foo")));
992+
assert_that(cargo_home(), is_not(has_installed_exe("bar")));
993+
}

0 commit comments

Comments
 (0)