1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Add lock support to deCONZ (#40807)

Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>
This commit is contained in:
Robert Svensson
2020-10-01 09:50:06 +02:00
committed by GitHub
parent 95d228cace
commit 9116061262
5 changed files with 168 additions and 4 deletions

View File

@@ -91,9 +91,10 @@ async def test_gateway_setup(hass):
assert forward_entry_setup.mock_calls[1][1] == (entry, "climate")
assert forward_entry_setup.mock_calls[2][1] == (entry, "cover")
assert forward_entry_setup.mock_calls[3][1] == (entry, "light")
assert forward_entry_setup.mock_calls[4][1] == (entry, "scene")
assert forward_entry_setup.mock_calls[5][1] == (entry, "sensor")
assert forward_entry_setup.mock_calls[6][1] == (entry, "switch")
assert forward_entry_setup.mock_calls[4][1] == (entry, "lock")
assert forward_entry_setup.mock_calls[5][1] == (entry, "scene")
assert forward_entry_setup.mock_calls[6][1] == (entry, "sensor")
assert forward_entry_setup.mock_calls[7][1] == (entry, "switch")
async def test_gateway_retry(hass):