Feature: Showing build output in simple format Scenario: Showing file compilation Given I have a file to compile When I pipe to xcpretty with "--simple" Then I should see a successful compilation message Scenario: Showing xib compilation Given I have a xib to compile When I pipe to xcpretty with "--simple" Then I should see a successful compilation message Scenario: Showing precompilation Given I have a precompiled header When I pipe to xcpretty with "--simple" Then I should see a successful precompilation message Scenario: Showing file compilation with color Given I have a file to compile When I pipe to xcpretty with "--simple --color" Then I should see a yellow completion icon Scenario: Showing xib compilation with color Given I have a xib to compile When I pipe to xcpretty with "--simple --color" Then I should see a yellow completion icon Scenario: Showing precompilation Given I have a precompiled header When I pipe to xcpretty with "--simple --color" Then I should see a yellow completion icon Scenario: Showing analyze Given I have a file to analyze When I pipe to xcpretty with "--simple" Then I should see a successful analyze message Scenario: Showing shallow analyze Given I have a file to shallow analyze When I pipe to xcpretty with "--simple" Then I should see a successful analyze message Scenario: Showing analyze with color Given I have a file to analyze When I pipe to xcpretty with "--simple --color" Then I should see a yellow completion icon Scenario: Showing shallow analyze with color Given I have a file to shallow analyze When I pipe to xcpretty with "--simple --color" Then I should see a yellow completion icon Scenario: Showing the start of a test run Given the tests have started running When I pipe to xcpretty with "--simple" Then I should see that test suite has started Scenario: Showing the start of a test suite Given I start a test suite When I pipe to xcpretty with "--simple" Then I should see the name of suite only Scenario: Showing the end of a test suite Given the test suite has finished When I pipe to xcpretty with "--simple" Then I should see that the test suite finished Scenario: Showing failed test output Given I have a failing test in my suite And the test suite has finished When I pipe to xcpretty with "--simple" Then I should see the name of a failed test And I should see the path of a failed test Scenario: Showing successful test output Given I have a passing test in my suite When I pipe to xcpretty with "--simple" Then I should see the name of a passing test And I should not see the name of the test group And I should not see the path of a passing test Scenario: Showing failed test output with color Given I have a failing test in my suite And the test suite has finished When I pipe to xcpretty with "--simple --color" Then I should see a red failed test mark And the final execution message should be red Scenario: Showing successful test output with color Given I have a passing test in my suite And the test suite has finished When I pipe to xcpretty with "--simple --color" Then I should see a green passing test mark Scenario: Running tests without UTF-8 support Given I have a passing test in my suite And I pipe to xcpretty with "--no-utf --color" Then I should see a non-utf prefixed output Scenario: Showing code signing Given I have a file to code sign When I pipe to xcpretty with "--simple" Then I should see a successful code signing message Scenario: Showing code signing a framework Given I have a framework to code sign When I pipe to xcpretty with "--simple" Then I should see a successful code signing message Scenario: Showing preprocess Given I have a file to preprocess When I pipe to xcpretty with "--simple" Then I should see a successful preprocessing message Scenario: Showing a PBXCp copy Given I have a file to copy with PBXCp When I pipe to xcpretty with "--simple" Then I should see a successful copying message Scenario: Build fails when Pod install hasn't been run Given podfile.lock wasn't in sync When I pipe to xcpretty with "--simple --color" Then I should see a red error message Scenario: Compilation fails because of syntax errors Given there was a syntax error When I pipe to xcpretty with "--simple --color" Then I should see a red compilation error And I should see a failed line And I should see a cyan cursor Scenario: Linker fails with undefined symbols Given the linker has failed with undefined symbols When I pipe to xcpretty with "--simple --color" Then I should see the undefined symbold message And I should see the symbol and reference that caused failure