You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feature: Eating bananasScenario Outline: Outlined given, when, thenGiven there are <start> bananas
When I eat <eat> bananas
Then I should have <left> bananas
Examples:
| start | eat | left | | 12 | 5 | 7 | | 12 | 3 | 9 |
The terminal output (pytest --gherkin-terminal-reporter) appears like so:
Feature: Eating bananas
Scenario: Outlined given, when, then
Given there are 12 bananas
When I eat 5 bananas
Then I should have 7 bananas
PASSED
Feature: Eating bananas
Scenario: Outlined given, when, then
Given there are 12 bananas
When I eat 3 bananas
Then I should have 9 bananas
PASSED
It would be rather nice if the step argument values (12 ,5, 7 then 12, 3, 9 in the examples above) appeared in a different colour.
I don't know how one should raise feature requests for this project so I hope this suffices.
The text was updated successfully, but these errors were encountered:
I have a feature defined like so:
The terminal output (
pytest --gherkin-terminal-reporter
) appears like so:It would be rather nice if the step argument values (12 ,5, 7 then 12, 3, 9 in the examples above) appeared in a different colour.
I don't know how one should raise feature requests for this project so I hope this suffices.
The text was updated successfully, but these errors were encountered: