summaryrefslogtreecommitdiff
path: root/spec/other
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2013-07-03 13:49:21 -0700
committerAndre Arko <andre@arko.net>2013-07-03 13:53:09 -0700
commitdd7a14af2a8767b4aab5adfb9c6d163a565b2f94 (patch)
treed0648f0500989fabb17f54a1183c28a1e9aa09ab /spec/other
parenta8f53b14900c4d1b47d149cb72432df085965b1c (diff)
parenta3c7fe43c42197ed6bacdda7917f48305cc459f9 (diff)
downloadbundler-dd7a14af2a8767b4aab5adfb9c6d163a565b2f94.tar.gz
Merge pull request #2487 from rahearn/outdated-dependency-info
Add dependency information from Gemfile to bundle outdated output Conflicts: CHANGELOG.md
Diffstat (limited to 'spec/other')
-rw-r--r--spec/other/outdated_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/other/outdated_spec.rb b/spec/other/outdated_spec.rb
index 15e40f61fc..b498510ff7 100644
--- a/spec/other/outdated_spec.rb
+++ b/spec/other/outdated_spec.rb
@@ -25,7 +25,7 @@ describe "bundle outdated" do
bundle "outdated"
- expect(out).to include("activesupport (3.0 > 2.3.5)")
+ expect(out).to include("activesupport (3.0 > 2.3.5) Gemfile specifies \"= 2.3.5\"")
expect(out).to include("foo (1.0")
# Gem names are one per-line, between "*" and their parenthesized version.
@@ -92,7 +92,7 @@ describe "bundle outdated" do
end
bundle "outdated --pre"
- expect(out).to include("activesupport (3.0.0.beta > 2.3.5)")
+ expect(out).to include("activesupport (3.0.0.beta > 2.3.5) Gemfile specifies \"= 2.3.5\"")
end
end
@@ -109,7 +109,7 @@ describe "bundle outdated" do
G
bundle "outdated"
- expect(out).to include("activesupport (3.0.0.beta.2 > 3.0.0.beta.1)")
+ expect(out).to include("activesupport (3.0.0.beta.2 > 3.0.0.beta.1) Gemfile specifies \"= 3.0.0.beta.1\"")
end
end
end