Sha256: 2c80cb28e0545c0b75cd95a00079e59049aaa48571d0d4f6800493d39efa0f90

Contents?: true

Size: 664 Bytes

Versions: 3

Compression:

Stored size: 664 Bytes

Contents

@gherkin4
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

3 entries across 3 versions & 1 rubygems

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