зеркало из https://github.com/github/ruby.git
21 строка
365 B
Ruby
21 строка
365 B
Ruby
# frozen_string_literal: true
|
|
require 'rubygems/test_case'
|
|
require 'rubygems/commands/mirror_command'
|
|
|
|
class TestGemCommandsMirrorCommand < Gem::TestCase
|
|
def setup
|
|
super
|
|
|
|
@cmd = Gem::Commands::MirrorCommand.new
|
|
end
|
|
|
|
def test_execute
|
|
use_ui @ui do
|
|
@cmd.execute
|
|
end
|
|
|
|
assert_match %r%Install the rubygems-mirror%i, @ui.error
|
|
end
|
|
|
|
end
|