diff options
author | Asutosh Palai <asupalai@gmail.com> | 2016-06-28 11:45:50 +0530 |
---|---|---|
committer | Asutosh Palai <asupalai@gmail.com> | 2016-06-28 11:45:50 +0530 |
commit | 0bff778d42834835fad9c5c3ff312177cd0841c2 (patch) | |
tree | 05676ab3cc23a0f387d085b8246fa17046eb0d7e /spec/commands/newgem_spec.rb | |
parent | 7ab16a7f7b40595d1cfd62205125158bc82605d6 (diff) | |
download | bundler-0bff778d42834835fad9c5c3ff312177cd0841c2.tar.gz |
Fixes specs for 1.8.7
Diffstat (limited to 'spec/commands/newgem_spec.rb')
-rw-r--r-- | spec/commands/newgem_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/commands/newgem_spec.rb b/spec/commands/newgem_spec.rb index 6414a0902e..cb3c48132a 100644 --- a/spec/commands/newgem_spec.rb +++ b/spec/commands/newgem_spec.rb @@ -743,7 +743,7 @@ describe "bundle gem" do it "asks about test framework" do global_config "BUNDLE_GEM__MIT" => "false", "BUNDLE_GEM__COC" => "false" - bundle "gem foobar" do |input| + bundle "gem foobar" do |input, _, _| input.puts "rspec" end @@ -766,7 +766,7 @@ describe "bundle gem" do bundle :config - bundle "gem foobar" do |input| + bundle "gem foobar" do |input, _, _| input.puts "yes" end @@ -776,7 +776,7 @@ describe "bundle gem" do it "asks about CoC" do global_config "BUNDLE_GEM__MIT" => "false", "BUNDLE_GEM__TEST" => "false" - bundle "gem foobar" do |input| + bundle "gem foobar" do |input, _, _| input.puts "yes" end |