Sha256: d78c928fc57d661cdc2b191ca085cc1d0b8ca8b4aa1c18a00a33994cdb6ac275

Contents?: true

Size: 683 Bytes

Versions: 6

Compression:

Stored size: 683 Bytes

Contents

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

6 entries across 6 versions & 2 rubygems

Version Path
cucumber_analytics-1.6.0 testing/cucumber/features/modeling/table_row_output.feature
cucumber_analytics-1.5.2 features/modeling/table_row_output.feature
cuke_modeler-0.0.2 features/modeling/table_row_output.feature
cuke_modeler-0.0.1 features/modeling/table_row_output.feature
cucumber_analytics-1.5.1 features/modeling/table_row_output.feature
cucumber_analytics-1.5.0 features/modeling/table_row_output.feature