diff options
author | Samuel Giddins <segiddins@segiddins.me> | 2017-06-21 19:09:43 -0500 |
---|---|---|
committer | Samuel Giddins <segiddins@segiddins.me> | 2017-06-22 11:49:00 -0500 |
commit | bd626995442707e5f114fabccc1b434ab0ad2ff0 (patch) | |
tree | 1304e215ed12b01a086ac74cd53d8ca9c921a55a /spec/install/gemfile | |
parent | 67ff76af19e6d033d26e63ff2f064754316fee38 (diff) | |
download | bundler-bd626995442707e5f114fabccc1b434ab0ad2ff0.tar.gz |
Allow not having specs available for gems that won’t be installed
Diffstat (limited to 'spec/install/gemfile')
-rw-r--r-- | spec/install/gemfile/groups_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/install/gemfile/groups_spec.rb b/spec/install/gemfile/groups_spec.rb index a6b81d0911..ed264d8439 100644 --- a/spec/install/gemfile/groups_spec.rb +++ b/spec/install/gemfile/groups_spec.rb @@ -363,8 +363,8 @@ RSpec.describe "bundle install with groups" do it "does not hit the remote a second time" do FileUtils.rm_rf gem_repo2 - bundle "install --without rack" - expect(err).to lack_errors + bundle! "install --without rack" + expect(out).not_to include "Fetching" end end end |