mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
44 lines
978 B
Ruby
44 lines
978 B
Ruby
|
require File.join(File.expand_path(File.dirname(__FILE__)),
|
||
|
'gem_installer_test_case')
|
||
|
require 'rubygems/uninstaller'
|
||
|
|
||
|
class TestGemUninstaller < GemInstallerTestCase
|
||
|
|
||
|
def setup
|
||
|
super
|
||
|
|
||
|
ui = MockGemUi.new
|
||
|
util_setup_gem ui
|
||
|
|
||
|
use_ui ui do
|
||
|
@installer.install
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def test_remove_executables_force_keep
|
||
|
uninstaller = Gem::Uninstaller.new nil, :executables => false
|
||
|
|
||
|
use_ui @ui do
|
||
|
uninstaller.remove_executables @spec
|
||
|
end
|
||
|
|
||
|
assert_equal true, File.exist?(File.join(@gemhome, 'bin', 'executable'))
|
||
|
|
||
|
assert_equal "Executables and scripts will remain installed.\n", @ui.output
|
||
|
end
|
||
|
|
||
|
def test_remove_executables_force_remove
|
||
|
uninstaller = Gem::Uninstaller.new nil, :executables => true
|
||
|
|
||
|
use_ui @ui do
|
||
|
uninstaller.remove_executables @spec
|
||
|
end
|
||
|
|
||
|
assert_equal "Removing executable\n", @ui.output
|
||
|
|
||
|
assert_equal false, File.exist?(File.join(@gemhome, 'bin', 'executable'))
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|