aboutsummaryrefslogtreecommitdiffstats
path: root/spec/bundler/commands
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-06-03 20:46:54 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-06-18 19:14:15 +0900
commita572e78201e1a4f5a44b6e354dc7b91f5f6d9c93 (patch)
treea6fda16af2e3b7560239ccff161f4d413ed32bcf /spec/bundler/commands
parent696a50751bc3257e5a75b4f0eb89ccef7ec89363 (diff)
downloadruby-a572e78201e1a4f5a44b6e354dc7b91f5f6d9c93.tar.gz
[rubygems/rubygems] s/gem_command!/gem_command
https://github.com/rubygems/rubygems/commit/f52733f6a4
Diffstat (limited to 'spec/bundler/commands')
-rw-r--r--spec/bundler/commands/clean_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/bundler/commands/clean_spec.rb b/spec/bundler/commands/clean_spec.rb
index 3a4b638278..f0c506aa04 100644
--- a/spec/bundler/commands/clean_spec.rb
+++ b/spec/bundler/commands/clean_spec.rb
@@ -379,7 +379,7 @@ RSpec.describe "bundle clean" do
gem "rack"
G
- gem_command! :list
+ gem_command :list
expect(out).to include("rack (1.0.0)").and include("thin (1.0)")
end
@@ -507,7 +507,7 @@ RSpec.describe "bundle clean" do
end
bundle :update, :all => true
- gem_command! :list
+ gem_command :list
expect(out).to include("foo (1.0.1, 1.0)")
end
@@ -531,7 +531,7 @@ RSpec.describe "bundle clean" do
bundle "clean --force"
expect(out).to include("Removing foo (1.0)")
- gem_command! :list
+ gem_command :list
expect(out).not_to include("foo (1.0)")
expect(out).to include("rack (1.0.0)")
end
@@ -565,7 +565,7 @@ RSpec.describe "bundle clean" do
expect(err).to include(system_gem_path.to_s)
expect(err).to include("grant write permissions")
- gem_command! :list
+ gem_command :list
expect(out).to include("foo (1.0)")
expect(out).to include("rack (1.0.0)")
end