Sha256: 381b870031db2d4bd7091688061daeab3090f39c7e86078a92051418858df711

Contents?: true

Size: 1003 Bytes

Versions: 6

Compression:

Stored size: 1003 Bytes

Contents

Feature: Outputting table elements

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


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

  Scenario: Output of a table that has multiple rows
    Given a table element based on the following gherkin:
    """
    |value1|
    |value2|
    """
    When it is outputted
    Then the following text is provided:
    """
    | value1 |
    | value2 |
    """

  Scenario: Whitespace buffers are based on the longest value in a column
    Given a table element based on the following gherkin:
    """
    |value|x|
    |y|another_value|
    """
    When it is outputted
    Then the following text is provided:
    """
    | value | x             |
    | y     | another_value |
    """

Version data entries

6 entries across 6 versions & 2 rubygems

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