File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -336,6 +336,15 @@ def _():
336
336
)
337
337
)
338
338
339
+ result = pytester .runpytest ("--gherkin-terminal-reporter" , "-v" )
340
+ result .assert_outcomes (passed = 3 , failed = 0 )
341
+ result .stdout .fnmatch_lines ("*Feature: Gherkin terminal output with rules and examples*" )
342
+ result .stdout .fnmatch_lines ("*Rule: Rule 1*" )
343
+ result .stdout .fnmatch_lines ("*Example: Example 1*" )
344
+ result .stdout .fnmatch_lines ("*Scenario: Scenario 2*" )
345
+ result .stdout .fnmatch_lines ("*Rule: Rule 2*" )
346
+ result .stdout .fnmatch_lines ("*Example: Example 3*" )
347
+
339
348
result = pytester .runpytest ("--gherkin-terminal-reporter" , "-vv" )
340
349
result .assert_outcomes (passed = 3 , failed = 0 )
341
350
result .stdout .fnmatch_lines ("*Feature: Gherkin terminal output with rules and examples*" )
You can’t perform that action at this time.
0 commit comments