mirror of
https://github.com/home-assistant/core.git
synced 2025-05-01 04:37:52 +00:00
12 lines
293 B
Python
12 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
|