1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/bundler/other/ssl_cert_spec.rb

19 lines
416 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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