summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/bundler/commands/check_spec.rb4
-rw-r--r--spec/bundler/install/bundler_spec.rb10
-rw-r--r--spec/bundler/support/builders.rb2
3 files changed, 8 insertions, 8 deletions
diff --git a/spec/bundler/commands/check_spec.rb b/spec/bundler/commands/check_spec.rb
index c7f887d3e5..db4dadf60f 100644
--- a/spec/bundler/commands/check_spec.rb
+++ b/spec/bundler/commands/check_spec.rb
@@ -78,13 +78,13 @@ RSpec.describe "bundle check" do
G
install_gemfile <<-G
source "#{file_uri_for(gem_repo1)}"
- gem 'rails_fail'
+ gem 'rails_pinned_to_old_activesupport'
G
gemfile <<-G
source "#{file_uri_for(gem_repo1)}"
gem "rails"
- gem "rails_fail"
+ gem "rails_pinned_to_old_activesupport"
G
bundle :check
diff --git a/spec/bundler/install/bundler_spec.rb b/spec/bundler/install/bundler_spec.rb
index 5e15333ad8..9667f80435 100644
--- a/spec/bundler/install/bundler_spec.rb
+++ b/spec/bundler/install/bundler_spec.rb
@@ -96,7 +96,7 @@ RSpec.describe "bundle install" do
install_gemfile <<-G
source "#{file_uri_for(gem_repo2)}"
gem "activemerchant"
- gem "rails_fail"
+ gem "rails_pinned_to_old_activesupport"
G
nice_error = <<-E.strip.gsub(/^ {8}/, "")
@@ -105,7 +105,7 @@ RSpec.describe "bundle install" do
activemerchant was resolved to 1.0, which depends on
activesupport (>= 2.0.0)
- rails_fail was resolved to 1.0, which depends on
+ rails_pinned_to_old_activesupport was resolved to 1.0, which depends on
activesupport (= 1.2.3)
E
expect(err).to include(nice_error)
@@ -116,7 +116,7 @@ RSpec.describe "bundle install" do
install_gemfile <<-G
source "#{file_uri_for(gem_repo2)}"
- gem "rails_fail"
+ gem "rails_pinned_to_old_activesupport"
gem "activesupport", "2.3.5"
G
@@ -125,7 +125,7 @@ RSpec.describe "bundle install" do
In Gemfile:
activesupport (= 2.3.5)
- rails_fail was resolved to 1.0, which depends on
+ rails_pinned_to_old_activesupport was resolved to 1.0, which depends on
activesupport (= 1.2.3)
E
expect(err).to include(nice_error)
@@ -139,7 +139,7 @@ RSpec.describe "bundle install" do
install_gemfile <<-G
source "#{file_uri_for(gem_repo2)}"
- gem "rails_fail"
+ gem "rails_pinned_to_old_activesupport"
G
expect(out).to include("Installing activesupport 1.2.3 (was 2.3.2)")
diff --git a/spec/bundler/support/builders.rb b/spec/bundler/support/builders.rb
index de71c64b56..98a6500631 100644
--- a/spec/bundler/support/builders.rb
+++ b/spec/bundler/support/builders.rb
@@ -76,7 +76,7 @@ module Spec
s.add_dependency "activesupport", ">= 2.0.0"
end
- build_gem "rails_fail" do |s|
+ build_gem "rails_pinned_to_old_activesupport" do |s|
s.add_dependency "activesupport", "= 1.2.3"
end