Sha256: 0ca9b74d99b801d77dc6535f2694e9842ebad688a747a4b932e7c37777ad6334

Contents?: true

Size: 495 Bytes

Versions: 5

Compression:

Stored size: 495 Bytes

Contents

Feature: Row output

  A row model's string output is a Gherkin representation of itself.


  Scenario: Outputting a row model
    Given the following gherkin:
      """
      |foo|bar|
      """
    And a row model based on that gherkin
      """
        @model = CukeModeler::Row.new(<source_text>)
      """
    When the model is output as a string
      """
        @model.to_s
      """
    Then the following text is provided:
      """
      | foo | bar |
      """

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cuke_modeler-1.0.4 testing/cucumber/features/modeling/row_output.feature
cuke_modeler-1.0.3 testing/cucumber/features/modeling/row_output.feature
cuke_modeler-1.0.2 testing/cucumber/features/modeling/row_output.feature
cuke_modeler-1.0.1 features/modeling/row_output.feature
cuke_modeler-1.0.0 features/modeling/row_output.feature