Sha256: 85c49167511d5d4c18927cb9fbf8ec6680a01ac33d08bebdc40ceb6bc3767c65

Contents?: true

Size: 664 Bytes

Versions: 5

Compression:

Stored size: 664 Bytes

Contents

@gherkin3
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/gherkin3/row_output.feature
cuke_modeler-0.4.0 features/modeling/gherkin3/row_output.feature
cuke_modeler-0.3.0 features/modeling/gherkin3/row_output.feature
cuke_modeler-0.2.0 features/modeling/gherkin3/row_output.feature
cuke_modeler-0.1.0 features/modeling/gherkin3/row_output.feature