diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-09-18 08:37:18 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-09-18 08:37:18 +0000 |
commit | ec6c07570237b209d47b7690a5b5a6774301242b () | |
tree | 70902f2e19499bb3bd26f014aa12bb43b96e9b22 /test/rubygems/test_gem_commands_cert_command.rb | |
parent | 3367daf716bda6e73f3418dd601bd1713d557c07 (diff) |
Merge upstream revision of rubygems/rubygems.
This commits includes tiny bugfix and new features listed here: * Add --re-sign flag to cert command by bronzdoc: https://.com/rubygems/rubygems/pull/2391 * Download gems with threads. by indirect: https://.com/rubygems/rubygems/pull/1898 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | test/rubygems/test_gem_commands_cert_command.rb | 39 |
1 files changed, 36 insertions, 3 deletions
@@ -9,14 +9,16 @@ end class TestGemCommandsCertCommand < Gem::TestCase ALTERNATE_CERT = load_cert 'alternate' ALTERNATE_KEY_FILE = key_path 'alternate' PRIVATE_KEY_FILE = key_path 'private' PUBLIC_KEY_FILE = key_path 'public' - ALTERNATE_CERT_FILE = cert_path 'alternate' - CHILD_CERT_FILE = cert_path 'child' - PUBLIC_CERT_FILE = cert_path 'public' def setup super @@ -582,6 +584,37 @@ ERROR: --private-key not specified and ~/.gem/gem-private_key.pem does not exis assert_equal expected, @ui.error end def test_handle_options @cmd.handle_options %W[ --add #{PUBLIC_CERT_FILE} |