1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00
This commit is contained in:
Paulus Schoutsen
2019-07-31 12:25:30 -07:00
parent da05dfe708
commit 4de97abc3a
2676 changed files with 163166 additions and 140084 deletions

View File

@@ -10,18 +10,17 @@ GA_API_KEY = "Agdgjsj399sdfkosd932ksd"
@asyncio.coroutine
def test_request_sync_service(aioclient_mock, hass):
"""Test that it posts to the request_sync url."""
aioclient_mock.post(
ga.const.REQUEST_SYNC_BASE_URL, status=200)
aioclient_mock.post(ga.const.REQUEST_SYNC_BASE_URL, status=200)
yield from async_setup_component(hass, 'google_assistant', {
'google_assistant': {
'project_id': 'test_project',
'api_key': GA_API_KEY
}})
yield from async_setup_component(
hass,
"google_assistant",
{"google_assistant": {"project_id": "test_project", "api_key": GA_API_KEY}},
)
assert aioclient_mock.call_count == 0
yield from hass.services.async_call(ga.const.DOMAIN,
ga.const.SERVICE_REQUEST_SYNC,
blocking=True)
yield from hass.services.async_call(
ga.const.DOMAIN, ga.const.SERVICE_REQUEST_SYNC, blocking=True
)
assert aioclient_mock.call_count == 1