To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorDoc string output
A doc string model's string output is a Gherkin representation of itself. As such, output from a doc string model can be used as input for the same kind of model.
- Scenarios
-
- Outputting a doc string model
-
- Given
-
the following gherkin:
""" type foo Some text some more text """
- And
-
a doc string model based on that gherkin
@model = CukeModeler::DocString.new(<source_text>)
- When
-
the model is output as a string
@model.to_s
- Then
-
the following text is provided:
""" type foo Some text some more text """
- And
-
the output can be used to make an equivalent model
CukeModeler::DocString.new(@model.to_s)
Last published about 5 years ago by Eric Kessler.