mirror of
https://github.com/home-assistant/core.git
synced 2025-11-08 18:39:30 +00:00
20 lines
614 B
Python
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()
|