mirror of
https://github.com/home-assistant/core.git
synced 2025-07-20 11:47:06 +00:00
Patch Shelly test setting up entry (#44842)
This commit is contained in:
parent
69b5176730
commit
f1c116831f
@ -255,7 +255,12 @@ async def test_user_setup_ignored_device(hass):
|
|||||||
settings=settings,
|
settings=settings,
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
):
|
), patch(
|
||||||
|
"homeassistant.components.shelly.async_setup", return_value=True
|
||||||
|
) as mock_setup, patch(
|
||||||
|
"homeassistant.components.shelly.async_setup_entry",
|
||||||
|
return_value=True,
|
||||||
|
) as mock_setup_entry:
|
||||||
|
|
||||||
result2 = await hass.config_entries.flow.async_configure(
|
result2 = await hass.config_entries.flow.async_configure(
|
||||||
result["flow_id"],
|
result["flow_id"],
|
||||||
@ -266,6 +271,8 @@ async def test_user_setup_ignored_device(hass):
|
|||||||
|
|
||||||
# Test config entry got updated with latest IP
|
# Test config entry got updated with latest IP
|
||||||
assert entry.data["host"] == "1.1.1.1"
|
assert entry.data["host"] == "1.1.1.1"
|
||||||
|
assert len(mock_setup.mock_calls) == 1
|
||||||
|
assert len(mock_setup_entry.mock_calls) == 1
|
||||||
|
|
||||||
|
|
||||||
async def test_form_firmware_unsupported(hass):
|
async def test_form_firmware_unsupported(hass):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user