core/tests/components/velbus/__init__.py

14 lines
399 B
Python

"""Tests for the Velbus component."""
from homeassistant.components.velbus import VelbusConfigEntry
from homeassistant.core import HomeAssistant
async def init_integration(
hass: HomeAssistant,
config_entry: VelbusConfigEntry,
) -> None:
"""Load the Velbus integration."""
assert await hass.config_entries.async_setup(config_entry.entry_id)
await hass.async_block_till_done()