features/modeling/scenario_modeling.feature in cucumber_analytics-0.0.1 vs features/modeling/scenario_modeling.feature in cucumber_analytics-0.0.2
- old
+ new
@@ -19,14 +19,21 @@
@a_tag
@another_tag@yet_another_tag
Scenario: The first scenario's name.
- #a comment
+ My big hunk of perfectly valid description:
+ |
- Some text describing the scenario.
- More text.
+ Scenario Outline
+ Examples
+ \"\"\"
+ Background
+ this is still one big valid description
+ # Basically, if it's not a step keyword or tag then I will accept
+ # it as description here. Cucumber might not but but that's between
+ # you and its lexxer/parser. ;)
Given this *parameterized* step takes a table:
| data |
| more data |
And some setup step
#
@@ -60,11 +67,16 @@
Then the test is found to have the following properties:
| name | The first scenario's name. |
Scenario: The scenario description is modeled.
Then the test descriptive lines are as follows:
- | Some text describing the scenario. |
- | More text. |
+ | My big hunk of perfectly valid description: |
+ | \| |
+ | Scenario Outline |
+ | Examples |
+ | """ |
+ | Background |
+ | this is still one big valid description |
Scenario: The scenario steps are modeled.
Then the test steps are as follows:
| Given this *parameterized* step takes a table: |
| \| data \| |