Files
core/tests/components/hdfury/__init__.py
2026-01-08 22:14:23 +01:00

20 lines
596 B
Python

"""Tests for the HDFury integration."""
from unittest.mock import patch
from homeassistant.const import Platform
from homeassistant.core import HomeAssistant
from tests.common import MockConfigEntry
async def setup_integration(
hass: HomeAssistant, config_entry: MockConfigEntry, platforms: list[Platform]
) -> None:
"""Fixture for setting up the integration."""
config_entry.add_to_hass(hass)
with patch("homeassistant.components.hdfury.PLATFORMS", platforms):
await hass.config_entries.async_setup(config_entry.entry_id)
await hass.async_block_till_done()