From b1541606a28872327716243a5b31706c0c2e3c22 Mon Sep 17 00:00:00 2001 From: David Rodríguez Date: Sun, 5 Apr 2020 13:42:08 +0200 Subject: [rubygems/rubygems] Fix incorrect `gem uninstall --all` message Currently `gem uninstall --all` shows the following incorrect message after completion: ``` INFO: Uninstalled all gems in ``` Now it shows something that actually makes sense like: ``` INFO: Uninstalled all gems in /home/deivid/Code/rubygems/tmp/test_rubygems_6986/gemhome ``` https://github.com/rubygems/rubygems/commit/8fa05e8f8c --- test/rubygems/test_gem_commands_uninstall_command.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'test/rubygems/test_gem_commands_uninstall_command.rb') diff --git a/test/rubygems/test_gem_commands_uninstall_command.rb b/test/rubygems/test_gem_commands_uninstall_command.rb index 1f71b4ce1d..ee63847c84 100644 --- a/test/rubygems/test_gem_commands_uninstall_command.rb +++ b/test/rubygems/test_gem_commands_uninstall_command.rb @@ -361,6 +361,7 @@ class TestGemCommandsUninstallCommand < Gem::InstallerTestCase end assert_equal %w[default-1], Gem::Specification.all_names.sort + assert_equal "INFO: Uninstalled all gems in #{@gemhome}", @ui.output.split("\n").last end def test_execute_outside_gem_home -- cgit v1.2.3