Files
core/tests/components/airos/__init__.py
Tom 9f1fe8a067 Add binary_sensor to UISP airOS (#149803)
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
2025-08-08 20:34:40 +02:00

20 lines
614 B
Python

"""Tests for the Ubiquity airOS integration."""
from homeassistant.const import Platform
from homeassistant.core import HomeAssistant
from tests.common import MockConfigEntry, patch
async def setup_integration(
hass: HomeAssistant,
mock_config_entry: MockConfigEntry,
platforms: list[Platform] | None = None,
) -> None:
"""Fixture for setting up the component."""
mock_config_entry.add_to_hass(hass)
with patch("homeassistant.components.airos._PLATFORMS", platforms):
await hass.config_entries.async_setup(mock_config_entry.entry_id)
await hass.async_block_till_done()