mirror of
https://github.com/home-assistant/core.git
synced 2025-07-14 16:57:10 +00:00
Ensure entity platform in google_wifi tests (#135720)
This commit is contained in:
parent
46b17b539c
commit
d62a66eaf2
@ -12,7 +12,11 @@ from homeassistant.core import HomeAssistant
|
|||||||
from homeassistant.setup import async_setup_component
|
from homeassistant.setup import async_setup_component
|
||||||
from homeassistant.util import dt as dt_util
|
from homeassistant.util import dt as dt_util
|
||||||
|
|
||||||
from tests.common import assert_setup_component, async_fire_time_changed
|
from tests.common import (
|
||||||
|
MockEntityPlatform,
|
||||||
|
assert_setup_component,
|
||||||
|
async_fire_time_changed,
|
||||||
|
)
|
||||||
|
|
||||||
NAME = "foo"
|
NAME = "foo"
|
||||||
|
|
||||||
@ -111,11 +115,12 @@ def fake_delay(hass: HomeAssistant, ha_delay: int) -> None:
|
|||||||
async_fire_time_changed(hass, shifted_time)
|
async_fire_time_changed(hass, shifted_time)
|
||||||
|
|
||||||
|
|
||||||
def test_name(requests_mock: requests_mock.Mocker) -> None:
|
def test_name(hass: HomeAssistant, requests_mock: requests_mock.Mocker) -> None:
|
||||||
"""Test the name."""
|
"""Test the name."""
|
||||||
api, sensor_dict = setup_api(None, MOCK_DATA, requests_mock)
|
api, sensor_dict = setup_api(None, MOCK_DATA, requests_mock)
|
||||||
for value in sensor_dict.values():
|
for value in sensor_dict.values():
|
||||||
sensor = value["sensor"]
|
sensor = value["sensor"]
|
||||||
|
sensor.platform = MockEntityPlatform(hass)
|
||||||
test_name = value["name"]
|
test_name = value["name"]
|
||||||
assert test_name == sensor.name
|
assert test_name == sensor.name
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user