Sha256: 792b316b77df971453e5e9d1bde6964a21dc42c335c65a85c354a01c02d25ed2

Contents?: true

Size: 1.66 KB

Versions: 32

Compression:

Stored size: 1.66 KB

Contents

Feature: Creating a JUnit test report

    Background:
        Given the tests have started running

    Scenario: Showing a test suite
        Given I have a passing test in my suite
        When I pipe to xcpretty with "--report junit"
        Then I should see a test suite node

    Scenario: Showing pending test output
        Given I have a pending test in my suite
        When I pipe to xcpretty with "--report junit"
        Then I should see a pending test node in my report

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

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

    Scenario: Counting tests
        Given 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 "--report junit"
        Then I should see 2 tests in my report

    Scenario: Having many test classes
        Given I have tests in my suite from 2 classes
        When I pipe to xcpretty with "--report junit"
        Then I should see 2 test suites

    Scenario: Writing to a custom file path
        When I pipe to xcpretty with "--report junit" and specify a custom path
        Then I should have a test report in a custom path

    Scenario: Writing to multiple custom file paths
        When I pipe to xcpretty with two custom "junit" report paths
        Then I should have test reports in two custom paths

Version data entries

32 entries across 32 versions & 3 rubygems

Version Path
xcpretty-0.2.8 features/junit_report.feature
xcpretty-0.2.7 features/junit_report.feature
xcpretty-0.2.6 features/junit_report.feature
xcpretty-0.2.4 features/junit_report.feature
xcpretty-0.2.3 features/junit_report.feature
xcpretty-bb-0.1.12.bb14 features/junit_report.feature
xcpretty-bb-0.1.12.bb13 features/junit_report.feature
xcpretty-bb-0.1.12.bb12 features/junit_report.feature
xcpretty-bb-0.1.12.bb11 features/junit_report.feature
xcpretty-bb-0.1.12.bb10 features/junit_report.feature
xcpretty-bb-0.1.12.bb9 features/junit_report.feature
xcpretty-bb-0.1.12.bb8 features/junit_report.feature
learn-xcpretty-0.1.12 features/junit_report.feature
xcpretty-0.2.2 features/junit_report.feature
xcpretty-bb-0.1.12.bb7 features/junit_report.feature
xcpretty-0.2.1 features/junit_report.feature
xcpretty-bb-0.1.12.bb6 features/junit_report.feature
xcpretty-0.2.0 features/junit_report.feature
xcpretty-bb-0.1.12.bb5 features/junit_report.feature
xcpretty-bb-0.1.12.bb4 features/junit_report.feature