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-bb-0.1.12.bb6 features/tap_format.feature
xcpretty-0.2.0 features/tap_format.feature
xcpretty-bb-0.1.12.bb5 features/tap_format.feature
xcpretty-bb-0.1.12.bb4 features/tap_format.feature
xcpretty-bb-0.1.12.bb3 features/tap_format.feature
xcpretty-bb-0.1.12.bb2 features/tap_format.feature
xcpretty-bb-0.1.12.bb1 features/tap_format.feature
xcpretty-0.1.12 features/tap_format.feature
xcpretty-0.1.11 features/tap_format.feature
xcpretty-0.1.10 features/tap_format.feature
learn-xcpretty-0.1.11 features/tap_format.feature
xcpretty-0.1.9 features/tap_format.feature
xcpretty-0.1.8 features/tap_format.feature
xcpretty-0.1.7 features/tap_format.feature
xcpretty-0.1.6 features/tap_format.feature
xcpretty-0.1.5 features/tap_format.feature
xcpretty-0.1.4 features/tap_format.feature