mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
![hsbt](/assets/img/avatar_default.png)
rubygems 2.7.x depends bundler-1.15.x. This is preparation for rubygems and bundler migration. * lib/bundler.rb, lib/bundler/*: files of bundler-1.15.4 * spec/bundler/*: rspec examples of bundler-1.15.4. I applied patches. * https://github.com/bundler/bundler/pull/6007 * Exclude not working examples on ruby repository. * Fake ruby interpriter instead of installed ruby. * Makefile.in: Added test task named `test-bundler`. This task is only working macOS/linux yet. I'm going to support Windows environment later. * tool/sync_default_gems.rb: Added sync task for bundler. [Feature #12733][ruby-core:77172] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59779 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
108 lines
2.7 KiB
Ruby
108 lines
2.7 KiB
Ruby
# frozen_string_literal: true
|
|
require "spec_helper"
|
|
|
|
RSpec.describe "bundle install with ENV conditionals" do
|
|
describe "when just setting an ENV key as a string" do
|
|
before :each do
|
|
gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
|
|
env "BUNDLER_TEST" do
|
|
gem "rack"
|
|
end
|
|
G
|
|
end
|
|
|
|
it "excludes the gems when the ENV variable is not set" do
|
|
bundle :install
|
|
expect(the_bundle).not_to include_gems "rack"
|
|
end
|
|
|
|
it "includes the gems when the ENV variable is set" do
|
|
ENV["BUNDLER_TEST"] = "1"
|
|
bundle :install
|
|
expect(the_bundle).to include_gems "rack 1.0"
|
|
end
|
|
end
|
|
|
|
describe "when just setting an ENV key as a symbol" do
|
|
before :each do
|
|
gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
|
|
env :BUNDLER_TEST do
|
|
gem "rack"
|
|
end
|
|
G
|
|
end
|
|
|
|
it "excludes the gems when the ENV variable is not set" do
|
|
bundle :install
|
|
expect(the_bundle).not_to include_gems "rack"
|
|
end
|
|
|
|
it "includes the gems when the ENV variable is set" do
|
|
ENV["BUNDLER_TEST"] = "1"
|
|
bundle :install
|
|
expect(the_bundle).to include_gems "rack 1.0"
|
|
end
|
|
end
|
|
|
|
describe "when setting a string to match the env" do
|
|
before :each do
|
|
gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
|
|
env "BUNDLER_TEST" => "foo" do
|
|
gem "rack"
|
|
end
|
|
G
|
|
end
|
|
|
|
it "excludes the gems when the ENV variable is not set" do
|
|
bundle :install
|
|
expect(the_bundle).not_to include_gems "rack"
|
|
end
|
|
|
|
it "excludes the gems when the ENV variable is set but does not match the condition" do
|
|
ENV["BUNDLER_TEST"] = "1"
|
|
bundle :install
|
|
expect(the_bundle).not_to include_gems "rack"
|
|
end
|
|
|
|
it "includes the gems when the ENV variable is set and matches the condition" do
|
|
ENV["BUNDLER_TEST"] = "foo"
|
|
bundle :install
|
|
expect(the_bundle).to include_gems "rack 1.0"
|
|
end
|
|
end
|
|
|
|
describe "when setting a regex to match the env" do
|
|
before :each do
|
|
gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
|
|
env "BUNDLER_TEST" => /foo/ do
|
|
gem "rack"
|
|
end
|
|
G
|
|
end
|
|
|
|
it "excludes the gems when the ENV variable is not set" do
|
|
bundle :install
|
|
expect(the_bundle).not_to include_gems "rack"
|
|
end
|
|
|
|
it "excludes the gems when the ENV variable is set but does not match the condition" do
|
|
ENV["BUNDLER_TEST"] = "fo"
|
|
bundle :install
|
|
expect(the_bundle).not_to include_gems "rack"
|
|
end
|
|
|
|
it "includes the gems when the ENV variable is set and matches the condition" do
|
|
ENV["BUNDLER_TEST"] = "foobar"
|
|
bundle :install
|
|
expect(the_bundle).to include_gems "rack 1.0"
|
|
end
|
|
end
|
|
end
|