Sha256: c5a62ac9d59677c29496c111a9f77be9fc535629df9ac642f190387f7ca8183d

Contents?: true

Size: 873 Bytes

Versions: 3

Compression:

Stored size: 873 Bytes

Contents

Feature: Progress output formatter

  Background:
    Given a file named "features/scenario_outline_with_undefined_steps.feature" with:
      """
      Feature:

        Scenario Outline:
          Given this step is undefined

        Examples:
          |foo|
          |bar|
      """

  Scenario: an scenario outline, one undefined step, one random example, expand flag on
    When I run `cucumber features/scenario_outline_with_undefined_steps.feature --format progress --expand `
    Then it should pass

  @todo-windows
  Scenario: when using a profile the output should include 'Using the default profile...'
    And a file named "cucumber.yml" with:
    """
      default: -r features
    """
    When I run `cucumber --profile default --format progress`
    Then it should pass
    And the output should contain:
    """
    Using the default profile...
    """

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cucumber-3.0.1 features/docs/formatters/progress_formatter.feature
cucumber-3.0.0 features/docs/formatters/progress_formatter.feature
cucumber-3.0.0.pre.2 features/docs/formatters/progress_formatter.feature