Sha256: 09a57ed46ffc3677f6421be7f5bb57e90f657e307327d0302ee8cec3558610f8

Contents?: true

Size: 1.52 KB

Versions: 10

Compression:

Stored size: 1.52 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 pending tests
        Given I have a pending test in my suite
        When I pipe to xcpretty with "--test"
        Then I should see a pending test icon in ASCII

    Scenario: Showing some tests failed with color
        Given I have a failing test in my suite
        And the test suite has finished
        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 color
        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 pending tests with color
        Given I have a pending test in my suite
        When I pipe to xcpretty with "--test --color"
        Then I should see a yellow pending 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

10 entries across 10 versions & 2 rubygems

Version Path
learn-xcpretty-0.1.12 features/test_format.feature
learn-xcpretty-0.1.11 features/test_format.feature
xcpretty-0.1.7 features/test_format.feature
xcpretty-0.1.6 features/test_format.feature
xcpretty-0.1.5 features/test_format.feature
xcpretty-0.1.4 features/test_format.feature
xcpretty-0.1.3 features/test_format.feature
xcpretty-0.1.2 features/test_format.feature
xcpretty-0.1.1 features/test_format.feature
xcpretty-0.1.0 features/test_format.feature