Sha256: a115b415c2f7f6e835016ff8efdf779edb6228221bd07c52acd5f9729e479d11

Contents?: true

Size: 1.11 KB

Versions: 3

Compression:

Stored size: 1.11 KB

Contents

Feature: Showing RSpec-style test output

    Scenario: Showing failed tests
        Given I have a failing test in my suite
        When I pipe to xcpretty with "--test"
        Then I should see a failed test icon

    Scenario: Showing passing tests
        Given I have a passing test in my suite
        When I pipe to xcpretty with "--test"
        Then I should see a passing test icon in ASCII

    Scenario: Showing some tests failed with color
        Given I have a failing test in my suite
        When I pipe to xcpretty with "--test --color"
        Then I should see a red failed test icon
        And I should see the path of a failed test
        And the final execution message should be red

    Scenario: Showing passing tests with colorization
        Given I have a passing test in my suite
        When I pipe to xcpretty with "--test --color"
        Then I should see a green passing test icon

    Scenario: Showing that all tests passed with color
        Given all of my tests will pass in my suite
        When I pipe to xcpretty with "--test --color"
        Then the final execution message should be green

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
xcpretty-0.0.6 features/test_format.feature
xcpretty-0.0.5 features/test_format.feature
xcpretty-0.0.4 features/test_format.feature