Sha256: fc32d0ed5be4595904f18d24abb0182acbb799f6a49969ebf1d5eb5cf0bf0859
Contents?: true
Size: 870 Bytes
Versions: 4
Compression:
Stored size: 870 Bytes
Contents
Feature: Step output A step model's string output is a Gherkin representation of itself. As such, output from a step model can be used as input for the same kind of model. Scenario: Outputting a step model Note: Outputting a step that has a doc string is accomplished in the same manner Given the following gherkin: """ * a step |value1| |value2| """ And a step model based on that gherkin """ @model = CukeModeler::Step.new(<source_text>) """ When the model is output as a string """ @model.to_s """ Then the following text is provided: """ * a step | value1 | | value2 | """ And the output can be used to make an equivalent model """ CukeModeler::Step.new(@model.to_s) """
Version data entries
4 entries across 4 versions & 1 rubygems