27 lines
769 B
Python
27 lines
769 B
Python
|
"""Velbus sensor platform tests."""
|
||
|
|
||
|
from unittest.mock import patch
|
||
|
|
||
|
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 init_integration
|
||
|
|
||
|
from tests.common import MockConfigEntry, snapshot_platform
|
||
|
|
||
|
|
||
|
async def test_entities(
|
||
|
hass: HomeAssistant,
|
||
|
snapshot: SnapshotAssertion,
|
||
|
config_entry: MockConfigEntry,
|
||
|
entity_registry: er.EntityRegistry,
|
||
|
) -> None:
|
||
|
"""Test all entities."""
|
||
|
with patch("homeassistant.components.velbus.PLATFORMS", [Platform.SENSOR]):
|
||
|
await init_integration(hass, config_entry)
|
||
|
|
||
|
await snapshot_platform(hass, entity_registry, snapshot, config_entry.entry_id)
|