summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornagachika <nagachika@ruby-lang.org>2020-12-09 20:33:51 +0900
committernagachika <nagachika@ruby-lang.org>2020-12-09 20:34:55 +0900
commit9b884df6dd918b0fdcc256d8a9febfaccd8a9042 (patch)
tree75fa7ca757302881bb3c96d7195aeeea784e0933 /test
parentd1ba5545513b68d39ca29b578a42bd8d48a7804e (diff)
Update rubygems to 3.1.5. [Bug #17381]
Add GlobalSign Root CA. https://github.com/rubygems/rubygems/pull/4100 https://github.com/rubygems/rubygems/pull/4105
Diffstat (limited to 'test')
-rw-r--r--test/rubygems/test_bundled_ca.rb11
1 files changed, 7 insertions, 4 deletions
diff --git a/test/rubygems/test_bundled_ca.rb b/test/rubygems/test_bundled_ca.rb
index ad66f3e616..9538d6b898 100644
--- a/test/rubygems/test_bundled_ca.rb
+++ b/test/rubygems/test_bundled_ca.rb
@@ -51,13 +51,16 @@ if ENV["CI"] || ENV["TEST_SSL"]
assert_https('rubygems.org')
end
- def test_accessing_fastly
- assert_https('rubygems.global.ssl.fastly.net')
+ def test_accessing_www_rubygems
+ assert_https('www.rubygems.org')
end
- def test_accessing_new_index
- assert_https('fastly.rubygems.org')
+ def test_accessing_staging
+ assert_https('staging.rubygems.org')
end
+ def test_accessing_new_index
+ assert_https('index.rubygems.org')
+ end
end
end