Sha256: 8fc9098634cf6406695867ab1423a228aa1046056c93700d65f80f8bda097e64

Contents?: true

Size: 1.19 KB

Versions: 26

Compression:

Stored size: 1.19 KB

Contents

Feature: Scenario output

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


  Scenario: Outputting a scenario model
    Given the following gherkin:
      """
      @tag1@tag2
      @tag3
      Scenario: A scenario with everything that it could have

      Including a description
      and then some.

      * a step
      |value|
      * another step
      \"\"\"
        some string
      \"\"\"
      """
    And a scenario model based on that gherkin
      """
        @model = CukeModeler::Scenario.new(<source_text>)
      """
    When the model is output as a string
      """
        @model.to_s
      """
    Then the following text is provided:
      """
      @tag1 @tag2 @tag3
      Scenario: A scenario with everything that it could have

      Including a description
      and then some.

        * a step
          | value |
        * another step
          \"\"\"
            some string
          \"\"\"
      """
    And the output can be used to make an equivalent model
      """
        CukeModeler::Scenario.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/scenario_output.feature
cuke_modeler-3.18.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.17.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.16.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.15.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.14.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.13.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.12.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.11.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.10.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.9.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.8.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.7.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.6.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.5.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.4.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.3.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.2.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.1.0 testing/cucumber/features/modeling/scenario_output.feature
cuke_modeler-3.0.0 testing/cucumber/features/modeling/scenario_output.feature