hass-core/tests/components/poolsense/__init__.py
2024-05-16 17:51:57 +02:00

12 lines
371 B
Python

"""Tests for the PoolSense integration."""
from homeassistant.core import HomeAssistant
from tests.common import MockConfigEntry
async def setup_integration(hass: HomeAssistant, config_entry: MockConfigEntry) -> None:
"""Fixture for setting up the component."""
config_entry.add_to_hass(hass)
await hass.config_entries.async_setup(config_entry.entry_id)