1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
@issue
Feature: Issue #125: Duplicate "Captured stdout" if substep has failed
Background: Test Setup
Given a new working directory
And a file named "features/steps/steps.py" with:
"""
from behave import step
@step('a step fails with stdout "{message}"')
def step_fails_with_stdout(context, message):
print(message)
assert False, 'EXPECT: Step fails with stdout.'
@step('substep fails with stdout "{message}"')
def substep_fails_with_stdout(context, message):
context.execute_steps(u'When a step fails with stdout "%s"' % message)
"""
Scenario: Subprocess call shows generated output
Given a file named "features/issue125_example.feature" with:
"""
Feature:
Scenario:
When substep fails with stdout "Hello"
"""
When I run "behave -f plain --no-timings features/issue125_example.feature"
Then it should fail with:
"""
0 scenarios passed, 1 failed, 0 skipped
0 steps passed, 1 failed, 0 skipped, 0 undefined
"""
And the command output should contain:
"""
Feature:
Scenario:
When substep fails with stdout "Hello" ... failed
Assertion Failed: FAILED SUB-STEP: When a step fails with stdout "Hello"
Substep info: Assertion Failed: EXPECT: Step fails with stdout.
"""
And the command output should contain 1 times:
"""
Captured stdout:
Hello
"""
But note that "the captured output should not be contained multiple times"
|