Sha256: 3d255a6ee94dd1383ec0bf5c5e61ec5474795824d8412432d8353d17cc9526fe

Contents?: true

Size: 901 Bytes

Versions: 26

Compression:

Stored size: 901 Bytes

Contents

# 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 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

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
rubygems-update-3.2.24 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.23 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.22 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.21 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.20 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.19 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.18 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.17 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.16 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.15 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.14 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.13 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.12 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.11 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.10 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.9 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.8 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.7 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.6 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.2.5 test/rubygems/test_gem_commands_signout_command.rb