From 7825e8363d4b2ccad8e2d3f5eeba9e26f6656911 Mon Sep 17 00:00:00 2001 From: hsbt Date: Fri, 22 Dec 2017 23:08:05 +0000 Subject: Postponing the Bundler merge. I faced a big issue about Bundler with ruby core. I have no time to resolve it issue before 2.5 final release. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61416 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- spec/bundler/runtime/load_spec.rb | 111 -------------------------------------- 1 file changed, 111 deletions(-) delete mode 100644 spec/bundler/runtime/load_spec.rb (limited to 'spec/bundler/runtime/load_spec.rb') diff --git a/spec/bundler/runtime/load_spec.rb b/spec/bundler/runtime/load_spec.rb deleted file mode 100644 index b74dbde3f6..0000000000 --- a/spec/bundler/runtime/load_spec.rb +++ /dev/null @@ -1,111 +0,0 @@ -# frozen_string_literal: true - -RSpec.describe "Bundler.load" do - describe "with a gemfile" do - before(:each) do - install_gemfile! <<-G - source "file://#{gem_repo1}" - gem "rack" - G - end - - it "provides a list of the env dependencies" do - expect(Bundler.load.dependencies).to have_dep("rack", ">= 0") - end - - it "provides a list of the resolved gems" do - expect(Bundler.load.gems).to have_gem("rack-1.0.0", "bundler-#{Bundler::VERSION}") - end - - it "ignores blank BUNDLE_GEMFILEs" do - expect do - ENV["BUNDLE_GEMFILE"] = "" - Bundler.load - end.not_to raise_error - end - end - - describe "with a gems.rb file" do - before(:each) do - create_file "gems.rb", <<-G - source "file://#{gem_repo1}" - gem "rack" - G - bundle! :install - end - - it "provides a list of the env dependencies" do - expect(Bundler.load.dependencies).to have_dep("rack", ">= 0") - end - - it "provides a list of the resolved gems" do - expect(Bundler.load.gems).to have_gem("rack-1.0.0", "bundler-#{Bundler::VERSION}") - end - end - - describe "without a gemfile" do - it "raises an exception if the default gemfile is not found" do - expect do - Bundler.load - end.to raise_error(Bundler::GemfileNotFound, /could not locate gemfile/i) - end - - it "raises an exception if a specified gemfile is not found" do - expect do - ENV["BUNDLE_GEMFILE"] = "omg.rb" - Bundler.load - end.to raise_error(Bundler::GemfileNotFound, /omg\.rb/) - end - - it "does not find a Gemfile above the testing directory" do - bundler_gemfile = tmp.join("../Gemfile") - unless File.exist?(bundler_gemfile) - FileUtils.touch(bundler_gemfile) - @remove_bundler_gemfile = true - end - begin - expect { Bundler.load }.to raise_error(Bundler::GemfileNotFound) - ensure - bundler_gemfile.rmtree if @remove_bundler_gemfile - end - end - end - - describe "when called twice" do - it "doesn't try to load the runtime twice" do - install_gemfile! <<-G - source "file:#{gem_repo1}" - gem "rack" - gem "activesupport", :group => :test - G - - ruby! <<-RUBY - require "bundler" - Bundler.setup :default - Bundler.require :default - puts RACK - begin - require "activesupport" - rescue LoadError - puts "no activesupport" - end - RUBY - - expect(out.split("\n")).to eq(["1.0.0", "no activesupport"]) - end - end - - describe "not hurting brittle rubygems" do - it "does not inject #source into the generated YAML of the gem specs" do - install_gemfile! <<-G - source "file:#{gem_repo1}" - gem "activerecord" - G - - Bundler.load.specs.each do |spec| - expect(spec.to_yaml).not_to match(/^\s+source:/) - expect(spec.to_yaml).not_to match(/^\s+groups:/) - end - end - end -end -- cgit v1.2.3