Sha256: fdc4abddac7df01bc68b11ce3368d90761d0d66bed418bd127926b59971b387f

Contents?: true

Size: 1.03 KB

Versions: 6

Compression:

Stored size: 1.03 KB

Contents

Feature: Outputting step elements

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


  Scenario: Output of a step without a block
    Given a step element based on the following gherkin:
    """
    * a step
    """
    When it is outputted
    Then the following text is provided:
    """
    * a step
    """

  Scenario: Output of a step with a doc string
    Given a step element based on the following gherkin:
    """
    * a step
    \"\"\"
    Some text

      some more text
    \"\"\"
    """
    When it is outputted
    Then the following text is provided:
    """
    * a step
      \"\"\"
      Some text
      
        some more text
      \"\"\"
    """

  Scenario: Output of a step with a table
    Given a step element based on the following gherkin:
    """
    * a step
    |value1|
    |value2|
    """
    When it is outputted
    Then the following text is provided:
    """
    * a step
      | value1 |
      | value2 |
    """

Version data entries

6 entries across 6 versions & 2 rubygems

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