spec/update/gems_spec.rb in bundler-1.3.5 vs spec/update/gems_spec.rb in bundler-1.3.6
- old
+ new
@@ -32,16 +32,16 @@
expect(bundled_app("Gemfile.lock")).to exist
end
end
describe "--quiet argument" do
- it 'shows UI messages without --quiet argument' do
+ it "shows UI messages without --quiet argument" do
bundle "update"
expect(out).to include("Fetching source")
end
- it 'does not show UI messages with --quiet argument' do
+ it "does not show UI messages with --quiet argument" do
bundle "update --quiet"
expect(out).not_to include("Fetching source")
end
end
@@ -54,10 +54,10 @@
bundle "update rack-obama"
should_be_installed "rack 1.2", "rack-obama 1.0", "activesupport 2.3.5"
end
end
- describe "with a unknown dependency" do
+ describe "with an unknown dependency" do
it "should inform the user" do
bundle "update halting-problem-solver", :expect_err=>true
expect(out).to include "Could not find gem 'halting-problem-solver'"
end
it "should suggest alternatives" do