summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2025-10-14 15:18:10 +0900
committergit <svn-admin@ruby-lang.org>2025-10-14 07:55:36 +0000
commitf142d1b598d54b71a85f5ab952a96f9af14cf434 (patch)
treea1f5640eb081cf60142ff797830e939b9ad35237
parente326e22eb83f420982dce32347929f538e764204 (diff)
[rubygems/rubygems] Removed obsoleted examples for legacy windows platform
https://github.com/rubygems/rubygems/commit/7b0da18764
-rw-r--r--spec/bundler/commands/cache_spec.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/bundler/commands/cache_spec.rb b/spec/bundler/commands/cache_spec.rb
index 1e90f01ce7..283719bedf 100644
--- a/spec/bundler/commands/cache_spec.rb
+++ b/spec/bundler/commands/cache_spec.rb
@@ -207,17 +207,6 @@ RSpec.describe "bundle cache" do
expect(bundled_app("vendor/cache/myrack-1.0.0.gem")).to exist
end
- it "prints an error when using legacy windows rubies" do
- gemfile <<-D
- source "https://gem.repo1"
- gem 'myrack', :platforms => [:ruby_20, :x64_mingw_20]
- D
-
- bundle "cache --all-platforms", raise_on_error: false
- expect(err).to include("removed")
- expect(bundled_app("vendor/cache/myrack-1.0.0.gem")).not_to exist
- end
-
it "does not attempt to install gems in without groups" do
build_repo4 do
build_gem "uninstallable", "2.0" do |s|