mirror of
https://github.com/home-assistant/core.git
synced 2026-02-21 02:18:47 +00:00
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: Joostlek <joostlek@outlook.com>
26 lines
786 B
Python
26 lines
786 B
Python
"""Tests for the Huum sensor entity."""
|
|
|
|
from unittest.mock import AsyncMock
|
|
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from . import setup_with_selected_platforms
|
|
|
|
from tests.common import MockConfigEntry, snapshot_platform
|
|
|
|
|
|
async def test_sensor(
|
|
hass: HomeAssistant,
|
|
mock_huum: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
snapshot: SnapshotAssertion,
|
|
entity_registry: er.EntityRegistry,
|
|
) -> None:
|
|
"""Test the temperature sensor."""
|
|
await setup_with_selected_platforms(hass, mock_config_entry, [Platform.SENSOR])
|
|
await snapshot_platform(hass, entity_registry, snapshot, mock_config_entry.entry_id)
|