Sha256: 289d0fd89ea2afae17f9b6a1ad5c90381dbac71725c1943b7d91c3c53ab8810e

Contents?: true

Size: 875 Bytes

Versions: 26

Compression:

Stored size: 875 Bytes

Contents

Feature: Doc string output

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


  Scenario: Outputting a doc string model
    Given the following gherkin:
      """
      \"\"\" type foo
      Some text

        some more text

      \"\"\"
      """
    And a doc string model based on that gherkin
      """
        @model = CukeModeler::DocString.new(<source_text>)
      """
    When the model is output as a string
      """
        @model.to_s
      """
    Then the following text is provided:
      """
      \"\"\" type foo
      Some text

        some more text

      \"\"\"
      """
    And the output can be used to make an equivalent model
      """
        CukeModeler::DocString.new(@model.to_s)
      """

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
cuke_modeler-2.1.0 testing/cucumber/features/modeling/doc_string_output.feature
cuke_modeler-2.0.0 testing/cucumber/features/modeling/doc_string_output.feature
cuke_modeler-1.5.1 testing/cucumber/features/modeling/doc_string_output.feature
cuke_modeler-1.5.0 testing/cucumber/features/modeling/doc_string_output.feature
cuke_modeler-1.4.0 testing/cucumber/features/modeling/doc_string_output.feature
cuke_modeler-1.3.0 testing/cucumber/features/modeling/doc_string_output.feature