mirror of https://github.com/home-assistant/core
19 lines
604 B
Python
19 lines
604 B
Python
"""Tests for the Rova component."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def setup_with_selected_platforms(
|
|
hass: HomeAssistant, entry: MockConfigEntry, platforms: list[Platform]
|
|
) -> None:
|
|
"""Set up the Rova integration with the selected platforms."""
|
|
entry.add_to_hass(hass)
|
|
with patch("homeassistant.components.rova.PLATFORMS", platforms):
|
|
assert await hass.config_entries.async_setup(entry.entry_id)
|
|
await hass.async_block_till_done()
|