Sha256: cbcc6df8174d139ca1ce93ee3efe46f3636a54ff5e218f903420604903d67b91

Contents?: true

Size: 867 Bytes

Versions: 26

Compression:

Stored size: 867 Bytes

Contents

Feature: Step output

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


  Scenario: Outputting a step model

  Note: Outputting a step that has a doc string is accomplished in the same manner

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

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
cuke_modeler-3.19.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.18.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.17.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.16.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.15.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.14.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.13.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.12.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.11.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.10.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.9.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.8.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.7.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.6.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.5.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.4.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.3.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.2.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.1.0 testing/cucumber/features/modeling/step_output.feature
cuke_modeler-3.0.0 testing/cucumber/features/modeling/step_output.feature