Sha256: b176bf615e1a52195ba5a0bd6c1433e9e5a407940150749bd22b99aa3fe9e7bf
Contents?: true
Size: 1.13 KB
Versions: 4
Compression:
Stored size: 1.13 KB
Contents
Feature: Example output An example model's string output is a Gherkin representation of itself. As such, output from an example model can be used as input for the same kind of model. Scenario: Outputting an example model Given the following gherkin: """ @tag1 @tag2 @tag3 Examples: an example with everything that it could have Some description. Some more description. |param1|param2| |value1|value2| |value3|value4| """ And an example model based on that gherkin """ @model = CukeModeler::Example.new(<source_text>) """ When the model is output as a string """ @model.to_s """ Then the following text is provided: """ @tag1 @tag2 @tag3 Examples: an example with everything that it could have Some description. Some more description. | param1 | param2 | | value1 | value2 | | value3 | value4 | """ And the output can be used to make an equivalent model """ CukeModeler::Example.new(@model.to_s) """
Version data entries
4 entries across 4 versions & 1 rubygems