features/steps/formatting_steps.rb in xcpretty-0.2.2 vs features/steps/formatting_steps.rb in xcpretty-0.2.3

- old
+ new

@@ -13,10 +13,14 @@ Given(/^I have a precompiled header$/) do add_run_input SAMPLE_PRECOMPILE end +Given(/^I have an aggregate target to build$/) do + add_run_input SAMPLE_AGGREGATE_TARGET +end + Given(/^I have a file to analyze$/) do add_run_input SAMPLE_ANALYZE end Given(/^I have a file to shallow analyze$/) do @@ -165,9 +169,13 @@ run_output.should start_with("▸ Compiling") end Then(/^I should see a successful precompilation message$/) do run_output.should start_with("▸ Precompiling") +end + +Then(/^I should see an aggregate target message$/) do + run_output.should start_with("▸ Aggregate") end Then(/^I should see a successful analyze message$/) do run_output.should start_with("▸ Analyzing") end