From 4c1f6750f2c333be2adf7ceab644598b230606d2 Mon Sep 17 00:00:00 2001 From: Antonio Paulino Date: Mon, 29 Aug 2022 16:00:07 -0300 Subject: [rubygems/rubygems] Fix: Gem info bug with version flag https://github.com/rubygems/rubygems/commit/e4cee1f975 --- test/rubygems/test_gem_commands_info_command.rb | 26 +++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'test') diff --git a/test/rubygems/test_gem_commands_info_command.rb b/test/rubygems/test_gem_commands_info_command.rb index b18b405da6..1c9ab7b07c 100644 --- a/test/rubygems/test_gem_commands_info_command.rb +++ b/test/rubygems/test_gem_commands_info_command.rb @@ -40,4 +40,30 @@ class TestGemCommandsInfoCommand < Gem::TestCase assert_match %r{#{@gem.summary}\n}, @ui.output assert_match "", @ui.error end + + def test_execute_with_version_flag + spec_fetcher do |fetcher| + fetcher.spec "coolgem", "1.0" + fetcher.spec "coolgem", "2.0" + end + + @cmd.handle_options %w[coolgem --remote --version 1.0] + + use_ui @ui do + @cmd.execute + end + + expected = <<-EOF + +*** REMOTE GEMS *** + +coolgem (1.0) + Author: A User + Homepage: http://example.com + + this is a summary + EOF + + assert_equal expected, @ui.output + end end -- cgit v1.2.3