pytest-bdd/tests/feature/test_description.py

71 lines
1.7 KiB
Python

"""Test descriptions."""
import textwrap
def test_description(pytester):
"""Test description for the feature."""
pytester.makefile(
".feature",
description=textwrap.dedent(
"""\
Feature: Description
In order to achieve something
I want something
Because it will be cool
Some description goes here.
Scenario: Description
Also, the scenario can have a description.
It goes here between the scenario name
and the first step.
Given I have a bar
"""
),
)
pytester.makepyfile(
textwrap.dedent(
"""\
import textwrap
from pytest_bdd import given, scenario
@scenario("description.feature", "Description")
def test_description():
pass
@given("I have a bar")
def _():
return "bar"
def test_feature_description():
assert test_description.__scenario__.feature.description == textwrap.dedent(
\"\"\"\\
In order to achieve something
I want something
Because it will be cool
Some description goes here.\"\"\"
)
def test_scenario_description():
assert test_description.__scenario__.description == textwrap.dedent(
\"\"\"\\
Also, the scenario can have a description.
It goes here between the scenario name
and the first step.\"\"\"
)
"""
)
)
result = pytester.runpytest()
result.assert_outcomes(passed=3)