Commit f44cfed6 authored by Eloy Duran's avatar Eloy Duran

Silence output during spec run.

parent 55706959
......@@ -9,7 +9,7 @@ describe "Pod::Command" do
end
it "creates the local spec-repos directory and creates a clone of the `master' repo" do
command = Pod::Command.parse('setup')
command = Pod::Command.parse('setup', '--silent')
def command.master_repo_url; SpecHelper.fixture('spec-repos/master'); end
command.run
git_config('master', 'remote.origin.url').should == fixture('spec-repos/master').to_s
......
......@@ -32,6 +32,7 @@ module SpecHelper
end
def command(*argv)
argv << '--silent'
command = Pod::Command.parse(*argv)
command.run
command
......
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