Sha256: f58fddf0f33a0a7fd842c2a24bb614e1ef41e1ee19a01fa2681e61dd69634f84

Contents?: true

Size: 567 Bytes

Versions: 5

Compression:

Stored size: 567 Bytes

Contents

Feature: Table output

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


  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 |
      """

Version data entries

5 entries across 5 versions & 1 rubygems

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