Sha256: fd45810161eaee6d699a831798e1e1a20066d839230652902130f088a0b65daa

Contents?: true

Size: 1.43 KB

Versions: 3

Compression:

Stored size: 1.43 KB

Contents

Feature: Multiline description names
  In order to accurately document feature elements
  As a cucumberist
  I want to have multiline names

  Scenario: multiline scenario
    When I run cucumber features/multiline_name.feature --no-snippets
    Then it should pass with
    """
    Feature: multiline

      Background: I'm a multiline name              # features/multiline_name.feature:3
        which goes on and on and on for three lines
        yawn
        Given passing without a table               # features/step_definitions/sample_steps.rb:12

      Scenario: I'm a multiline name                # features/multiline_name.feature:8
        which goes on and on and on for three lines
        yawn
        Given passing without a table               # features/step_definitions/sample_steps.rb:12

      Scenario Outline: I'm a multiline name        # features/multiline_name.feature:13
        which goes on and on and on for three lines
        yawn
        Given <state> without a table               # features/step_definitions/sample_steps.rb:12

      Examples: 
        | state   |
        | passing |

      Scenario Outline: name          # features/multiline_name.feature:21
        Given <state> without a table # features/step_definitions/sample_steps.rb:12

      Examples: I'm a multiline name
        which goes on and on and on for three lines
        yawn
        | state   |
        | passing |

    3 scenarios
    6 passed steps

    """

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
aslakhellesoy-cucumber-0.3.0.1 features/multiline_names.feature
aslakhellesoy-cucumber-0.3.1 features/multiline_names.feature
cucumber-0.3.1 features/multiline_names.feature