Sha256: 93b45cf4938cf01cab54cd5fa3acd1e1d086e2f9d26a181cac98ad5c50d2acc6
Contents?: true
Size: 700 Bytes
Versions: 2
Compression:
Stored size: 700 Bytes
Contents
Feature: Tag output A tag model's string output is a Gherkin representation of itself. As such, output from a tag model can be used as input for the same kind of model. 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 """ And the output can be used to make an equivalent model """ CukeModeler::Tag.new(@model.to_s) """
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cuke_modeler-1.1.1 | testing/cucumber/features/modeling/tag_output.feature |
cuke_modeler-1.1.0 | testing/cucumber/features/modeling/tag_output.feature |