Sha256: 2f9d282f5abd3d626818227e75d7ea75088b92a3b72b50e6d9506cf8fbd595fa

Contents?: true

Size: 992 Bytes

Versions: 5

Compression:

Stored size: 992 Bytes

Contents

Feature: Comment output

  A comment model's string output is a Gherkin representation of itself and its most relevant attribute for
  inspection is the text of the comment that it models.


  Background:
    Given the following gherkin:
      """
      # a comment
      """
    And a comment model based on that gherkin
      """
      @model = CukeModeler::Comment.new(<source_text>)
      """


  Scenario: Stringify a comment model
    When the model is output as a string
      """
      @model.to_s
      """
    Then the following text is provided:
      """
      # a comment
      """
    And the output can be used to make an equivalent model
      """
      CukeModeler::Comment.new(@model.to_s)
      """

  Scenario: Inspect a comment model
    When the model is inspected
      """
      @model.inspect
      """
    Then the following text is provided:
      """
      #<CukeModeler::Comment:<object_id> @text: "# a comment">
      """

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cuke_modeler-3.23.0 testing/cucumber/features/modeling/comment_output.feature
cuke_modeler-3.22.0 testing/cucumber/features/modeling/comment_output.feature
cuke_modeler-3.21.0 testing/cucumber/features/modeling/comment_output.feature
cuke_modeler-3.20.1 testing/cucumber/features/modeling/comment_output.feature
cuke_modeler-3.20.0 testing/cucumber/features/modeling/comment_output.feature