Sha256: 933f3e4fc0f91843b0cace406e644095a13f64979099168595f08ae63c3e8503

Contents?: true

Size: 781 Bytes

Versions: 4

Compression:

Stored size: 781 Bytes

Contents

Feature: Table output

  A table model's string output is a Gherkin representation of itself. As such, output from a table model can be used as
  input for the same kind of model.


  Scenario: Outputting a table model
    Given the following gherkin:
      """
      |value1|value2|
      |value3|value4|
      """
    And a table model based on that gherkin
      """
        @model = CukeModeler::Table.new(<source_text>)
      """
    When the model is output as a string
      """
        @model.to_s
      """
    Then the following text is provided:
      """
      | value1 | value2 |
      | value3 | value4 |
      """
    And the output can be used to make an equivalent model
      """
        CukeModeler::Table.new(@model.to_s)
      """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cuke_modeler-1.2.1 testing/cucumber/features/modeling/table_output.feature
cuke_modeler-1.2.0 testing/cucumber/features/modeling/table_output.feature
cuke_modeler-1.1.1 testing/cucumber/features/modeling/table_output.feature
cuke_modeler-1.1.0 testing/cucumber/features/modeling/table_output.feature