summaryrefslogtreecommitdiff
path: root/spec/commands
diff options
context:
space:
mode:
authorshekharrajak <shekharstudy@ymail.com>2017-04-05 10:19:04 +0530
committershekharrajak <shekharstudy@ymail.com>2017-04-05 10:32:15 +0530
commit1754e5019fe7f97db6d24f11bba8768d1dca7772 (patch)
treee7f7891363d40e8d41214dd0dccb06499d1e8384 /spec/commands
parent1f466c04a6d3ea54abfafc4d5fde0a17717ade55 (diff)
downloadbundler-1754e5019fe7f97db6d24f11bba8768d1dca7772.tar.gz
writing groups instead of group in the Gemfile
Diffstat (limited to 'spec/commands')
-rw-r--r--spec/commands/inject_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/commands/inject_spec.rb b/spec/commands/inject_spec.rb
index f39818b04e..5c711b32a0 100644
--- a/spec/commands/inject_spec.rb
+++ b/spec/commands/inject_spec.rb
@@ -72,7 +72,7 @@ Usage: "bundle inject GEM VERSION"
it "add gem with multiple groups in gemfile" do
bundle "inject 'rack-obama' '>0' --group=development,test"
gemfile = bundled_app("Gemfile").read
- str = "gem 'rack-obama', '> 0', :group => [:development, :test]"
+ str = "gem 'rack-obama', '> 0', :groups => [:development, :test]"
expect(gemfile).to include str
end
end