1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[rubygems/rubygems] Fix redundant commands

They are preceded by `install_gemfile` calls, which mean `bundle
install` is being run twice for no reason.

d2b2d10862
This commit is contained in:
David Rodríguez 2020-06-07 14:23:45 +02:00 committed by Hiroshi SHIBATA
parent cceb77f57b
commit 66b327af56
Notes: git 2020-06-18 19:15:21 +09:00

View file

@ -313,7 +313,6 @@ RSpec.describe "bundle install with gem sources" do
gem "rack"
G
bundle :install
expect(err).to include("Your Gemfile has no gem server sources")
end
@ -384,7 +383,6 @@ RSpec.describe "bundle install with gem sources" do
end
G
bundle :install, :artifice => nil
expect(err).to include("Could not fetch specs from http://0.0.0.0:9384/")
expect(err).not_to include("file://")
end