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 collaboratorFeature output
A feature model's string output is a Gherkin representation of itself.
- Scenarios
-
- Outputting a feature model
-
- Given
-
the following gherkin:
@[email protected] @tag3 Feature: A feature with everything it could have Including a description and then some. Background: Background description * a step |value1| * another step @scenario_tag Scenario: Scenario description * a step * another step """ some text """ @outline_tag Scenario Outline: Outline description * a step |value2| * another step """ some text """ @example_tag Examples: Example description |param| |value|
- And
-
a feature model based on that gherkin
@model = CukeModeler::Feature.new(<source_text>)
- When
-
the model is output as a string
@model.to_s
- Then
-
the following text is provided:
@tag1 @tag2 @tag3 Feature: A feature with everything it could have Including a description and then some. Background: Background description * a step | value1 | * another step @scenario_tag Scenario: Scenario description * a step * another step """ some text """ @outline_tag Scenario Outline: Outline description * a step | value2 | * another step """ some text """ @example_tag Examples: Example description | param | | value |
Last published over 6 years ago by Eric Kessler.