26 lines
888 B
Python
26 lines
888 B
Python
"""Climate sensor tests for Intergas InComfort integration."""
|
|
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
from syrupy import SnapshotAssertion
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from tests.common import snapshot_platform
|
|
|
|
|
|
@patch("homeassistant.components.incomfort.PLATFORMS", [Platform.CLIMATE])
|
|
async def test_setup_platform(
|
|
hass: HomeAssistant,
|
|
mock_incomfort: MagicMock,
|
|
entity_registry: er.EntityRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
mock_config_entry: ConfigEntry,
|
|
) -> None:
|
|
"""Test the incomfort entities are set up correctly."""
|
|
await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
|
await snapshot_platform(hass, entity_registry, snapshot, mock_config_entry.entry_id)
|