features/modeling/outline_modeling.feature in cucumber_analytics-0.0.2 vs features/modeling/outline_modeling.feature in cucumber_analytics-0.0.3
- old
+ new
@@ -34,13 +34,14 @@
Given this *parameterized* step takes a table:
| <param1> |
| <param2> |
And some setup step
+ * some setup step
#
When a step with a *parameter*
- And a big step:
+ But a big step:
#random comment
\"\"\"
some text
#some comments
@@ -51,10 +52,12 @@
Feature:
|
Given
When
Then
+ And
+ But
*
some more text
\"\"\"
Then *lots* *of* *parameters*
@@ -101,12 +104,13 @@
Then the test steps are as follows:
| Given this *parameterized* step takes a table: |
| \| <param1> \| |
| \| <param2> \| |
| And some setup step |
+ | * some setup step |
| When a step with a *parameter* |
- | And a big step: |
+ | But a big step: |
| """ |
| 'some text' |
| '' |
| '#some comments' |
| 'Scenario:' |
@@ -116,25 +120,29 @@
| 'Feature:' |
| '\|' |
| 'Given' |
| 'When' |
| 'Then' |
+ | 'And' |
+ | 'But' |
| '*' |
| ' some more text' |
| """ |
| Then *lots* *of* *parameters* |
And the test steps "without" arguments are as follows:
| Given this ** step takes a table: |
| And some setup step |
+ | * some setup step |
| When a step with a ** |
- | And a big step: |
+ | But a big step: |
| Then ** ** ** |
And the test steps "without" keywords are as follows:
| this *parameterized* step takes a table: |
| \| <param1> \| |
| \| <param2> \| |
| some setup step |
+ | some setup step |
| a step with a *parameter* |
| a big step: |
| """ |
| 'some text' |
| '' |
@@ -146,24 +154,27 @@
| 'Feature:' |
| '\|' |
| 'Given' |
| 'When' |
| 'Then' |
+ | 'And' |
+ | 'But' |
| '*' |
| ' some more text' |
| """ |
| *lots* *of* *parameters* |
And the test steps "without" arguments "without" keywords are as follows:
| this ** step takes a table: |
| some setup step |
+ | some setup step |
| a step with a ** |
| a big step: |
| ** ** ** |
And the test step "1" has the following block:
| \| <param1> \| |
| \| <param2> \| |
- And the test step "4" has the following block:
+ And the test step "5" has the following block:
| """ |
| 'some text' |
| '' |
| '#some comments' |
| 'Scenario:' |
@@ -173,9 +184,11 @@
| 'Feature:' |
| '\|' |
| 'Given' |
| 'When' |
| 'Then' |
+ | 'And' |
+ | 'But' |
| '*' |
| ' some more text' |
| """ |
Scenario: The outline tags are modeled.