diff options
author | SHIBATA Hiroshi <hsbt@ruby-lang.org> | 2018-10-16 20:11:28 +0900 |
---|---|---|
committer | SHIBATA Hiroshi <hsbt@ruby-lang.org> | 2018-10-16 20:11:28 +0900 |
commit | d6176860a8514430dd353d29db92cd5d651775c1 (patch) | |
tree | ede99e161805cb5e059822777c50dbf21995b294 | |
parent | 07236100c921f9dcd396d46792b3936a880fdf21 (diff) | |
download | bundler-use-helper-methods.tar.gz |
use rake helper methoduse-helper-methods
-rw-r--r-- | spec/commands/newgem_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/commands/newgem_spec.rb b/spec/commands/newgem_spec.rb index 4b5db87b00..598d68ec3a 100644 --- a/spec/commands/newgem_spec.rb +++ b/spec/commands/newgem_spec.rb @@ -327,7 +327,7 @@ RSpec.describe "bundle gem" do end Dir.chdir(bundled_app(gem_name)) do - sys_exec("rake") + sys_exec(rake) expect(out).to include("SUCCESS") end end @@ -612,7 +612,7 @@ RSpec.describe "bundle gem" do end Dir.chdir(bundled_app(gem_name)) do - sys_exec("rake") + sys_exec(rake) expect(out).to include("SUCCESS") end end |