From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/test/rubygems/test_gem_commands_mirror.rb | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 jni/ruby/test/rubygems/test_gem_commands_mirror.rb (limited to 'jni/ruby/test/rubygems/test_gem_commands_mirror.rb') diff --git a/jni/ruby/test/rubygems/test_gem_commands_mirror.rb b/jni/ruby/test/rubygems/test_gem_commands_mirror.rb new file mode 100644 index 0000000..2f6fe52 --- /dev/null +++ b/jni/ruby/test/rubygems/test_gem_commands_mirror.rb @@ -0,0 +1,32 @@ +require 'rubygems/test_case' +require 'rubygems/commands/mirror_command' + +class TestGemCommandsMirrorCommand < Gem::TestCase + + def setup + super + + @cmd = Gem::Commands::MirrorCommand.new + + @mirror_specs = Gem::Specification.find_all_by_name('rubygems-mirror').each do |spec| + Gem::Specification.remove_spec spec + end + end + + def teardown + @mirror_specs.each do |spec| + Gem::Specification.add_spec spec + end + + super + end + + def test_execute + use_ui @ui do + @cmd.execute + end + + assert_match %r%Install the rubygems-mirror%i, @ui.error + end + +end -- cgit v1.2.3