32 lines
941 B
Python
32 lines
941 B
Python
"""Test Météo France weather entity."""
|
|
|
|
from collections.abc import Generator
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from tests.common import MockConfigEntry, snapshot_platform
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def override_platforms() -> Generator[None]:
|
|
"""Override PLATFORMS."""
|
|
with patch("homeassistant.components.meteo_france.PLATFORMS", [Platform.WEATHER]):
|
|
yield
|
|
|
|
|
|
async def test_weather(
|
|
hass: HomeAssistant,
|
|
config_entry: MockConfigEntry,
|
|
entity_registry: er.EntityRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test the weather entity."""
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await snapshot_platform(hass, entity_registry, snapshot, config_entry.entry_id)
|