mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
19 lines
437 B
Ruby
19 lines
437 B
Ruby
![]() |
# frozen_string_literal: true
|
||
|
require "spec_helper"
|
||
|
require "bundler/ssl_certs/certificate_manager"
|
||
|
|
||
|
RSpec.describe "SSL Certificates", :rubygems_master do
|
||
|
hosts = %w(
|
||
|
rubygems.org
|
||
|
index.rubygems.org
|
||
|
rubygems.global.ssl.fastly.net
|
||
|
staging.rubygems.org
|
||
|
)
|
||
|
|
||
|
hosts.each do |host|
|
||
|
it "can securely connect to #{host}", :realworld do
|
||
|
Bundler::SSLCerts::CertificateManager.new.connect_to(host)
|
||
|
end
|
||
|
end
|
||
|
end
|