mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
c00e84327f
This is RC version of Rubygems 2.7.0.
688fb7e83c
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60133 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
37 lines
1 KiB
Ruby
37 lines
1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rubygems/test_case'
|
|
require 'rubygems/commands/signout_command'
|
|
require 'rubygems/installer'
|
|
|
|
class TestGemCommandsSignoutCommand < Gem::TestCase
|
|
|
|
def setup
|
|
super
|
|
@cmd = Gem::Commands::SignoutCommand.new
|
|
end
|
|
|
|
def teardown
|
|
super
|
|
File.delete Gem.configuration.credentials_path if File.exist?(Gem.configuration.credentials_path)
|
|
end
|
|
|
|
def test_execute_when_user_is_signed_in
|
|
FileUtils.mkdir_p File.dirname(Gem.configuration.credentials_path)
|
|
FileUtils::touch Gem.configuration.credentials_path
|
|
|
|
@sign_out_ui = Gem::MockGemUi.new
|
|
use_ui(@sign_out_ui) { @cmd.execute }
|
|
|
|
assert_match %r{You have successfully signed out}, @sign_out_ui.output
|
|
assert_equal false, File.exist?(Gem.configuration.credentials_path)
|
|
end
|
|
|
|
def test_execute_when_not_signed_in # i.e. no credential file created
|
|
@sign_out_ui = Gem::MockGemUi.new
|
|
use_ui(@sign_out_ui) { @cmd.execute }
|
|
|
|
assert_match %r{You are not currently signed in}, @sign_out_ui.error
|
|
end
|
|
|
|
end
|