Commit 6ea048ac authored by Samuel E. Giddins's avatar Samuel E. Giddins

[SpecHelper] Ensure that test UI is reset before each spec

parent 80e192c6
......@@ -82,6 +82,16 @@ module Bacon
include SpecHelper::Fixture
include SpecHelper::Command
alias_method :original_initialize, :initialize
def initialize(name, &block)
original_initialize(name, &block)
before do
Pod::UI.output = ''
Pod::UI.warnings = ''
Pod::UI.next_input = ''
end
end
def skip_xcodebuild?
ENV['SKIP_XCODEBUILD']
end
......
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