Files
core/tests/components/yoto/__init__.py
T
2026-05-26 18:35:28 +02:00

13 lines
386 B
Python

"""Tests for the Yoto integration."""
from homeassistant.core import HomeAssistant
from tests.common import MockConfigEntry
async def setup_integration(hass: HomeAssistant, entry: MockConfigEntry) -> None:
"""Set up the Yoto integration for testing."""
entry.add_to_hass(hass)
await hass.config_entries.async_setup(entry.entry_id)
await hass.async_block_till_done()