2023-11-07 20:53:22 +00:00
|
|
|
"""Tests for the V2C integration."""
|
2024-05-11 19:28:37 +00:00
|
|
|
|
2024-06-14 07:26:46 +00:00
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
|
2024-05-11 19:28:37 +00:00
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
|
|
|
2024-06-14 07:26:46 +00:00
|
|
|
async def init_integration(
|
|
|
|
hass: HomeAssistant, config_entry: MockConfigEntry
|
|
|
|
) -> MockConfigEntry:
|
2024-05-11 19:28:37 +00:00
|
|
|
"""Set up the V2C integration in Home Assistant."""
|
|
|
|
config_entry.add_to_hass(hass)
|
|
|
|
|
|
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
|
|
await hass.async_block_till_done()
|