mirror of https://github.com/home-assistant/core
29 lines
861 B
Python
29 lines
861 B
Python
"""Tests for the seventeentrack component."""
|
|
|
|
from datetime import timedelta
|
|
|
|
from freezegun.api import FrozenDateTimeFactory
|
|
|
|
from homeassistant.components.seventeentrack.const import DEFAULT_SCAN_INTERVAL
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from tests.common import MockConfigEntry, async_fire_time_changed
|
|
|
|
|
|
async def init_integration(
|
|
hass: HomeAssistant,
|
|
config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Set up the 17Track integration in Home Assistant."""
|
|
|
|
config_entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
async def goto_future(hass: HomeAssistant, freezer: FrozenDateTimeFactory):
|
|
"""Move to future."""
|
|
freezer.tick(DEFAULT_SCAN_INTERVAL + timedelta(minutes=1))
|
|
async_fire_time_changed(hass)
|
|
await hass.async_block_till_done()
|