File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -970,3 +970,24 @@ fn uninstall_multiple_and_specifying_bin() {
970
970
error: A binary can only be associated with a single installed package, specifying multiple specs with --bin is redundant.
971
971
" ) ) ;
972
972
}
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
+ }
You can’t perform that action at this time.
0 commit comments