core/tests/components/velbus/__init__.py
Maikel Punie af13979855
Add Velbus binary sensor tests (#134132)
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
2024-12-28 14:57:48 +01:00

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()