Sha256: b8ffbb6ab0127403b9beebc106f761a72500c972195e30caac940d77a10646be

Contents?: true

Size: 490 Bytes

Versions: 5

Compression:

Stored size: 490 Bytes

Contents

Feature: Tag output

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


  Scenario: Outputting a tag model
    Given the following gherkin:
      """
      @a_tag
      """
    And a scenario model based on that gherkin
      """
        @model = CukeModeler::Tag.new(<source_text>)
      """
    When the model is output as a string
      """
        @model.to_s
      """
    Then the following text is provided:
      """
      @a_tag
      """

Version data entries

5 entries across 5 versions & 1 rubygems

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