forked from HAL9000/cleveragents-core
20 lines
797 B
Python
20 lines
797 B
Python
"""Step definitions for plan_service_uncovered_lines.feature.
|
|
|
|
All step implementations required by this feature are already provided by
|
|
``plan_service_steps.py``. Behave auto-discovers every ``*_steps.py`` module
|
|
in the ``features/steps/`` directory and merges their step registries, so no
|
|
new definitions are needed here.
|
|
|
|
This module exists solely as documentation / a placeholder so that the
|
|
relationship between the ``.feature`` file and its steps is explicit.
|
|
|
|
If future scenarios require steps not already defined in the shared module,
|
|
add them below.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
# Re-export to guarantee the shared step definitions are loaded even when
|
|
# behave is invoked with an explicit ``--steps`` filter.
|
|
import features.steps.plan_service_steps as _shared # noqa: F401
|