mirror of https://github.com/home-assistant/core
23 lines
629 B
Python
23 lines
629 B
Python
"""The image tests for the AEMET OpenData platform."""
|
|
|
|
from freezegun.api import FrozenDateTimeFactory
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .util import async_init_integration
|
|
|
|
|
|
async def test_aemet_create_images(
|
|
hass: HomeAssistant,
|
|
freezer: FrozenDateTimeFactory,
|
|
) -> None:
|
|
"""Test creation of AEMET images."""
|
|
|
|
await hass.config.async_set_time_zone("UTC")
|
|
freezer.move_to("2021-01-09 12:00:00+00:00")
|
|
await async_init_integration(hass)
|
|
|
|
state = hass.states.get("image.aemet_weather_radar")
|
|
assert state is not None
|
|
assert state.state == "2021-01-09T11:34:06.448809+00:00"
|