Add snapshot tests to omnilogic (#117986)
This commit is contained in:
parent
bdc3bb57f3
commit
34deac1a61
6 changed files with 553 additions and 0 deletions
28
tests/components/omnilogic/test_sensor.py
Normal file
28
tests/components/omnilogic/test_sensor.py
Normal file
|
@ -0,0 +1,28 @@
|
|||
"""Tests for the omnilogic sensors."""
|
||||
|
||||
from unittest.mock import patch
|
||||
|
||||
from syrupy 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 snapshot_platform
|
||||
|
||||
|
||||
async def test_sensors(
|
||||
hass: HomeAssistant,
|
||||
entity_registry: er.EntityRegistry,
|
||||
snapshot: SnapshotAssertion,
|
||||
) -> None:
|
||||
"""Test sensors."""
|
||||
with patch(
|
||||
"homeassistant.components.omnilogic.PLATFORMS",
|
||||
[Platform.SENSOR],
|
||||
):
|
||||
entry = await init_integration(hass)
|
||||
|
||||
await snapshot_platform(hass, entity_registry, snapshot, entry.entry_id)
|
Loading…
Add table
Add a link
Reference in a new issue