hass-core/tests/components/blueprint/common.py
2023-05-25 13:45:19 +02:00

11 lines
293 B
Python

"""Blueprints test helpers."""
from unittest.mock import patch
def stub_blueprint_populate_fixture_helper():
"""Stub copying the blueprints to the config folder."""
with patch(
"homeassistant.components.blueprint.models.DomainBlueprints.async_populate"
):
yield