Sha256: bf85e4df2d673aa005b352fa79dd5287affe6e5d194ae2653bdc71ab622fafe5

Contents?: true

Size: 846 Bytes

Versions: 21

Compression:

Stored size: 846 Bytes

Contents

Feature: Pretty output formatter

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

        Scenario Outline:
          Given an undefined step

        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 pretty --expand `
    Then it should pass

  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 pretty`
    Then it should pass
    And the output should contain:
    """
    Using the default profile...
    """

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
cucumber-1.3.20 features/pretty_formatter.feature
cucumber-1.3.19 features/pretty_formatter.feature
cucumber-1.3.18 features/pretty_formatter.feature
cucumber-1.3.17 features/pretty_formatter.feature
cucumber-1.3.16 features/pretty_formatter.feature
cucumber-1.3.15 features/pretty_formatter.feature
cucumber-1.3.14 features/pretty_formatter.feature
cucumber-1.3.13 features/pretty_formatter.feature
cucumber-1.3.12 features/pretty_formatter.feature
cucumber-1.3.11 features/pretty_formatter.feature
cucumber-1.3.10 features/pretty_formatter.feature
cucumber-1.3.9 features/pretty_formatter.feature
cucumber-1.3.8 features/pretty_formatter.feature
cucumber-1.3.7 features/pretty_formatter.feature
cucumber-1.3.6 features/pretty_formatter.feature
cucumber-1.3.5 features/pretty_formatter.feature
cucumber-1.3.4 features/pretty_formatter.feature
cucumber-1.3.3 features/pretty_formatter.feature
cucumber-1.3.2 features/pretty_formatter.feature
cucumber-1.3.1 features/pretty_formatter.feature