summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason King <jk@handle.it>2016-12-09 15:10:18 -0700
committerJason King <jk@handle.it>2016-12-09 15:10:18 -0700
commitecd54cc1e433c65b4ceb3847331fd225cc28633c (patch)
treefc01ae52aec354f18c987cc790ec59abc748afc8
parentf33a11c4e713ec89ebec135e1fab1d293663463a (diff)
downloadbundler-ecd54cc1e433c65b4ceb3847331fd225cc28633c.tar.gz
Use `bundle!` in specs
-rw-r--r--spec/update/gems/post_install_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/update/gems/post_install_spec.rb b/spec/update/gems/post_install_spec.rb
index 89cf6a9017..0e3683e7cb 100644
--- a/spec/update/gems/post_install_spec.rb
+++ b/spec/update/gems/post_install_spec.rb
@@ -11,9 +11,9 @@ describe "bundle update" do
gem 'thin'
G
- bundle "config #{config}" if config
+ bundle! "config #{config}" if config
- bundle :install
+ bundle! :install
end
shared_examples "a config observer" do
@@ -53,7 +53,7 @@ describe "bundle update" do
gem 'thin'
G
- bundle :update
+ bundle! :update
end
it_behaves_like "a post-install message outputter"
@@ -68,7 +68,7 @@ describe "bundle update" do
gem 'thin'
G
- bundle :update
+ bundle! :update
end
it_behaves_like "a post-install message outputter"