Sha256: 394b449a4f387080857dc732385d6e61ec49d2de39c00bcfa2e0d73d28ee5bc3

Contents?: true

Size: 663 Bytes

Versions: 5

Compression:

Stored size: 663 Bytes

Contents

@gherkin
Feature: Outputting row elements

  The output of an element model is a representation of the element as it would
  appear in gherkin.


  Scenario: Output of a row that has one cell
    Given a row element based on the following gherkin:
    """
    |value|
    """
    When it is outputted
    Then the following text is provided:
    """
    | value |
    """

  Scenario: Output of a row that has multiple cells
    Given a row element based on the following gherkin:
    """
    |value|another_value|
    """
    When it is outputted
    Then the following text is provided:
    """
    | value | another_value |
    """

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cuke_modeler-0.4.1 features/modeling/gherkin/row_output.feature
cuke_modeler-0.4.0 features/modeling/gherkin/row_output.feature
cuke_modeler-0.3.0 features/modeling/gherkin/row_output.feature
cuke_modeler-0.2.0 features/modeling/gherkin/row_output.feature
cuke_modeler-0.1.0 features/modeling/gherkin/row_output.feature