Sha256: e564df6e08cb214d99bda06fb031e8d55853bc1b30b504f9b6429c611e90e05d

Contents?: true

Size: 1.23 KB

Versions: 37

Compression:

Stored size: 1.23 KB

Contents

Feature: Showing Test Anything Protocol-compatible test output

    Scenario: Showing failed tests
        Given I have a failing test in my suite
        When I pipe to xcpretty with "--tap"
        Then I should see text beginning with "not ok 1"

    Scenario: Showing passing tests
        Given I have a passing test in my suite
        When I pipe to xcpretty with "--tap"
        Then I should see text beginning with "ok 1"

    Scenario: Showing pending tests
        Given I have a pending test in my suite
        When I pipe to xcpretty with "--tap"
        Then I should see text containing " # TODO" and beginning with "not ok 1"

    Scenario: Showing how many tests completed
        Given I have a pending test in my suite
        And I have a passing test in my suite
        And I have a failing test in my suite
        And the test suite has finished
        When I pipe to xcpretty with "--tap"
        Then I should see text matching "1..3"

    Scenario: Showing a running test counter
        Given I have a passing test in my suite
        And I have a failing test in my suite
        When I pipe to xcpretty with "--tap"
        Then I should see text beginning with "ok 1"
        And I should see text beginning with "not ok 2"

Version data entries

37 entries across 37 versions & 4 rubygems

Version Path
xcpretty-0.4.0 features/tap_format.feature
xcpretty-security-patched-0.3.2 features/tap_format.feature
xcpretty-security-patched-0.3.0 features/tap_format.feature
xcpretty-0.3.0 features/tap_format.feature
xcpretty-0.2.8 features/tap_format.feature
xcpretty-0.2.7 features/tap_format.feature
xcpretty-0.2.6 features/tap_format.feature
xcpretty-0.2.4 features/tap_format.feature
xcpretty-0.2.3 features/tap_format.feature
xcpretty-bb-0.1.12.bb14 features/tap_format.feature
xcpretty-bb-0.1.12.bb13 features/tap_format.feature
xcpretty-bb-0.1.12.bb12 features/tap_format.feature
xcpretty-bb-0.1.12.bb11 features/tap_format.feature
xcpretty-bb-0.1.12.bb10 features/tap_format.feature
xcpretty-bb-0.1.12.bb9 features/tap_format.feature
xcpretty-bb-0.1.12.bb8 features/tap_format.feature
learn-xcpretty-0.1.12 features/tap_format.feature
xcpretty-0.2.2 features/tap_format.feature
xcpretty-bb-0.1.12.bb7 features/tap_format.feature
xcpretty-0.2.1 features/tap_format.feature