Commit 5cae6ac1 authored by Marius Rackwitz's avatar Marius Rackwitz

[IntegrationSpec] Don't leak to stdout

The path of the mercury binary leaked to the spec runner output
parent 06ef4465
...@@ -91,7 +91,8 @@ end ...@@ -91,7 +91,8 @@ end
describe_cli 'pod' do describe_cli 'pod' do
has_mercurial = system('which hg') Process.wait(spawn('which hg', :err => :out, :out => '/dev/null'))
has_mercurial = $?.success?
subject do |s| subject do |s|
s.executable = "ruby #{ROOT + 'bin/pod'}" s.executable = "ruby #{ROOT + 'bin/pod'}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment