Black
This commit is contained in:
parent
4b5d0915a9
commit
d9f3bdea53
3 changed files with 13 additions and 4 deletions
|
@ -25,7 +25,9 @@ async def test_alexa_config_expose_entity_prefs(hass, cloud_prefs):
|
||||||
entity_conf["should_expose"] = None
|
entity_conf["should_expose"] = None
|
||||||
assert conf.should_expose("light.kitchen")
|
assert conf.should_expose("light.kitchen")
|
||||||
|
|
||||||
await cloud_prefs.async_update(alexa_default_expose=["sensor"],)
|
await cloud_prefs.async_update(
|
||||||
|
alexa_default_expose=["sensor"],
|
||||||
|
)
|
||||||
assert not conf.should_expose("light.kitchen")
|
assert not conf.should_expose("light.kitchen")
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -187,5 +187,7 @@ async def test_google_config_expose_entity_prefs(mock_conf, cloud_prefs):
|
||||||
entity_conf["should_expose"] = None
|
entity_conf["should_expose"] = None
|
||||||
assert mock_conf.should_expose(state)
|
assert mock_conf.should_expose(state)
|
||||||
|
|
||||||
await cloud_prefs.async_update(google_default_expose=["sensor"],)
|
await cloud_prefs.async_update(
|
||||||
|
google_default_expose=["sensor"],
|
||||||
|
)
|
||||||
assert not mock_conf.should_expose(state)
|
assert not mock_conf.should_expose(state)
|
||||||
|
|
|
@ -330,11 +330,16 @@ async def test_reloading(aioclient_mock, hass, hass_client):
|
||||||
assert body == "hello world"
|
assert body == "hello world"
|
||||||
|
|
||||||
yaml_path = path.join(
|
yaml_path = path.join(
|
||||||
_get_fixtures_base_path(), "fixtures", "generic/configuration.yaml",
|
_get_fixtures_base_path(),
|
||||||
|
"fixtures",
|
||||||
|
"generic/configuration.yaml",
|
||||||
)
|
)
|
||||||
with patch.object(hass_config, "YAML_CONFIG_FILE", yaml_path):
|
with patch.object(hass_config, "YAML_CONFIG_FILE", yaml_path):
|
||||||
await hass.services.async_call(
|
await hass.services.async_call(
|
||||||
DOMAIN, SERVICE_RELOAD, {}, blocking=True,
|
DOMAIN,
|
||||||
|
SERVICE_RELOAD,
|
||||||
|
{},
|
||||||
|
blocking=True,
|
||||||
)
|
)
|
||||||
await hass.async_block_till_done()
|
await hass.async_block_till_done()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue