diff options
Diffstat (limited to 'spec/bundler/install/gems/dependency_api_spec.rb')
-rw-r--r-- | spec/bundler/install/gems/dependency_api_spec.rb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/spec/bundler/install/gems/dependency_api_spec.rb b/spec/bundler/install/gems/dependency_api_spec.rb index 283f1208f2..4ea67b7e31 100644 --- a/spec/bundler/install/gems/dependency_api_spec.rb +++ b/spec/bundler/install/gems/dependency_api_spec.rb @@ -254,7 +254,7 @@ RSpec.describe "gemcutter's dependency API" do end end - it "fetches again when more dependencies are found in subsequent sources", bundler: "< 3" do + it "fetches again when more dependencies are found in subsequent sources", bundler: "2" do build_repo2 do build_gem "back_deps" do |s| s.add_dependency "foo" @@ -313,7 +313,7 @@ RSpec.describe "gemcutter's dependency API" do expect(the_bundle).to include_gems "myrack 1.2" end - it "considers all possible versions of dependencies from all api gem sources", bundler: "< 3" do + it "considers all possible versions of dependencies from all api gem sources", bundler: "2" do # In this scenario, the gem "somegem" only exists in repo4. It depends on specific version of activesupport that # exists only in repo1. There happens also be a version of activesupport in repo4, but not the one that version 1.0.0 # of somegem wants. This test makes sure that bundler actually finds version 1.2.3 of active support in the other @@ -358,7 +358,7 @@ RSpec.describe "gemcutter's dependency API" do expect(out).to include("Fetching source index from http://localgemserver.test/extra") end - it "does not fetch every spec when doing back deps", bundler: "< 3" do + it "does not fetch every spec when doing back deps", bundler: "2" do build_repo2 do build_gem "back_deps" do |s| s.add_dependency "foo" @@ -397,7 +397,7 @@ RSpec.describe "gemcutter's dependency API" do expect(the_bundle).to include_gems "back_deps 1.0" end - it "fetches again when more dependencies are found in subsequent sources using deployment mode", bundler: "< 3" do + it "fetches again when more dependencies are found in subsequent sources using deployment mode", bundler: "2" do build_repo2 do build_gem "back_deps" do |s| s.add_dependency "foo" @@ -471,7 +471,7 @@ RSpec.describe "gemcutter's dependency API" do expect(out).to include("Fetching gem metadata from #{source_uri}") end - it "installs the binstubs", bundler: "< 3" do + it "installs the binstubs", bundler: "2" do gemfile <<-G source "#{source_uri}" gem "myrack" @@ -483,7 +483,7 @@ RSpec.describe "gemcutter's dependency API" do expect(out).to eq("1.0.0") end - it "installs the bins when using --path and uses autoclean", bundler: "< 3" do + it "installs the bins when using --path and uses autoclean", bundler: "2" do gemfile <<-G source "#{source_uri}" gem "myrack" @@ -494,7 +494,7 @@ RSpec.describe "gemcutter's dependency API" do expect(vendored_gems("bin/myrackup")).to exist end - it "installs the bins when using --path and uses bundle clean", bundler: "< 3" do + it "installs the bins when using --path and uses bundle clean", bundler: "2" do gemfile <<-G source "#{source_uri}" gem "myrack" @@ -580,7 +580,7 @@ RSpec.describe "gemcutter's dependency API" do expect(out).not_to include("#{user}:#{password}") end - it "strips http basic auth creds when warning about ambiguous sources", bundler: "< 3" do + it "strips http basic auth creds when warning about ambiguous sources", bundler: "2" do gemfile <<-G source "#{basic_auth_source_uri}" source "#{file_uri_for(gem_repo1)}" |