mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
59c8d50653
* bin/*, lib/bundler/*, lib/bundler.rb, spec/bundler, man/*: Merge from latest stable branch of bundler/bundler repository and added workaround patches. I will backport them into upstream. * common.mk, defs/gmake.mk: Added `test-bundler` task for test suite of bundler. * tool/sync_default_gems.rb: Added sync task for bundler. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65509 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
39 lines
1.3 KiB
Ruby
39 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe "bundle install with a mirror configured" do
|
|
describe "when the mirror does not match the gem source" do
|
|
before :each do
|
|
gemfile <<-G
|
|
source "file://localhost#{gem_repo1}"
|
|
|
|
gem "rack"
|
|
G
|
|
bundle "config --local mirror.http://gems.example.org http://gem-mirror.example.org"
|
|
end
|
|
|
|
it "installs from the normal location" do
|
|
bundle :install
|
|
expect(out).to include(normalize_uri_file("Fetching source index from file://localhost#{gem_repo1}"))
|
|
expect(the_bundle).to include_gems "rack 1.0"
|
|
end
|
|
end
|
|
|
|
describe "when the gem source matches a configured mirror" do
|
|
before :each do
|
|
gemfile <<-G
|
|
# This source is bogus and doesn't have the gem we're looking for
|
|
source "file://localhost#{gem_repo2}"
|
|
|
|
gem "rack"
|
|
G
|
|
bundle "config --local mirror.file://localhost#{gem_repo2} file://localhost#{gem_repo1}"
|
|
end
|
|
|
|
it "installs the gem from the mirror" do
|
|
bundle :install
|
|
expect(out).to include(normalize_uri_file("Fetching source index from file://localhost#{gem_repo1}"))
|
|
expect(out).not_to include(normalize_uri_file("Fetching source index from file://localhost#{gem_repo2}"))
|
|
expect(the_bundle).to include_gems "rack 1.0"
|
|
end
|
|
end
|
|
end
|