pytest-bdd/pytest_bdd/__init__.py

8 lines
226 B
Python

"""pytest-bdd public API."""
from __future__ import annotations
from pytest_bdd.scenario import scenario, scenarios
from pytest_bdd.steps import given, then, when
__all__ = ["given", "when", "then", "scenario", "scenarios"]