mirror of https://github.com/home-assistant/core
33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
"""Test RainMachine select entities."""
|
|
|
|
from typing import Any
|
|
from unittest.mock import AsyncMock, patch
|
|
|
|
from syrupy import SnapshotAssertion
|
|
|
|
from homeassistant.components.rainmachine import DOMAIN
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from tests.common import MockConfigEntry, snapshot_platform
|
|
|
|
|
|
async def test_select_entities(
|
|
hass: HomeAssistant,
|
|
entity_registry: er.EntityRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
config: dict[str, Any],
|
|
config_entry: MockConfigEntry,
|
|
client: AsyncMock,
|
|
) -> None:
|
|
"""Test select entities."""
|
|
with (
|
|
patch("homeassistant.components.rainmachine.Client", return_value=client),
|
|
patch("homeassistant.components.rainmachine.PLATFORMS", [Platform.SELECT]),
|
|
):
|
|
assert await async_setup_component(hass, DOMAIN, config)
|
|
await hass.async_block_till_done()
|
|
await snapshot_platform(hass, entity_registry, snapshot, config_entry.entry_id)
|