2016-02-01 07:43:26 -05:00
|
|
|
# frozen_string_literal: true
|
2021-06-01 23:32:47 -04:00
|
|
|
require_relative "helper"
|
2008-09-25 06:13:50 -04:00
|
|
|
require "rubygems/commands/list_command"
|
|
|
|
|
2011-01-28 18:46:47 -05:00
|
|
|
class TestGemCommandsListCommand < Gem::TestCase
|
2008-09-25 06:13:50 -04:00
|
|
|
def setup
|
|
|
|
super
|
|
|
|
|
|
|
|
@cmd = Gem::Commands::ListCommand.new
|
|
|
|
|
2013-11-11 19:16:41 -05:00
|
|
|
spec_fetcher do |fetcher|
|
|
|
|
fetcher.spec "c", 1
|
|
|
|
end
|
2008-09-25 06:13:50 -04:00
|
|
|
|
|
|
|
@fetcher.data["#{@gem_repo}Marshal.#{Gem.marshal_version}"] = proc do
|
|
|
|
raise Gem::RemoteFetcher::FetchError
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute_installed
|
|
|
|
@cmd.handle_options %w[c --installed]
|
|
|
|
|
2021-05-10 23:25:46 -04:00
|
|
|
assert_raise Gem::MockGemUi::SystemExitException do
|
2008-09-25 06:13:50 -04:00
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal "true\n", @ui.output
|
|
|
|
assert_equal "", @ui.error
|
|
|
|
end
|
|
|
|
end
|