mirror of https://github.com/home-assistant/core
26 lines
676 B
Python
26 lines
676 B
Python
"""Tests for the nuki locks."""
|
|
|
|
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_locks(
|
|
hass: HomeAssistant,
|
|
entity_registry: er.EntityRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test locks."""
|
|
with patch("homeassistant.components.nuki.PLATFORMS", [Platform.LOCK]):
|
|
entry = await init_integration(hass)
|
|
|
|
await snapshot_platform(hass, entity_registry, snapshot, entry.entry_id)
|