Sha256: 4dce002b1ec7a9d1c03f97acf73ef745b6308b700bd651e4022244fadc9e170c

Contents?: true

Size: 694 Bytes

Versions: 3

Compression:

Stored size: 694 Bytes

Contents

@gherkin4
Feature: Outputting table row elements

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


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

  Scenario: Output of a table row that has multiple cells
    Given a table 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

3 entries across 3 versions & 1 rubygems

Version Path
cuke_modeler-0.4.1 features/modeling/gherkin4/table_row_output.feature
cuke_modeler-0.4.0 features/modeling/gherkin4/table_row_output.feature
cuke_modeler-0.3.0 features/modeling/gherkin4/table_row_output.feature