mirror of https://github.com/home-assistant/core
28 lines
802 B
Python
28 lines
802 B
Python
"""Test the Tessie sensor platform."""
|
|
|
|
from freezegun.api import FrozenDateTimeFactory
|
|
import pytest
|
|
from syrupy import SnapshotAssertion
|
|
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from .common import assert_entities, setup_platform
|
|
|
|
|
|
@pytest.mark.usefixtures("entity_registry_enabled_by_default")
|
|
async def test_sensors(
|
|
hass: HomeAssistant,
|
|
snapshot: SnapshotAssertion,
|
|
entity_registry: er.EntityRegistry,
|
|
freezer: FrozenDateTimeFactory,
|
|
) -> None:
|
|
"""Tests that the sensor entities are correct."""
|
|
|
|
freezer.move_to("2024-01-01 00:00:00+00:00")
|
|
|
|
entry = await setup_platform(hass, [Platform.SENSOR])
|
|
|
|
assert_entities(hass, entry.entry_id, entity_registry, snapshot)
|