mirror of
https://github.com/home-assistant/core.git
synced 2026-04-28 04:33:49 +01:00
Add diagnostics platform to airgradient (#126886)
This commit is contained in:
committed by
GitHub
parent
9ec26a9be5
commit
18fd00d0c2
29
tests/components/airgradient/test_diagnostics.py
Normal file
29
tests/components/airgradient/test_diagnostics.py
Normal file
@@ -0,0 +1,29 @@
|
||||
"""Tests for the diagnostics data provided by the AirGradient integration."""
|
||||
|
||||
from unittest.mock import AsyncMock
|
||||
|
||||
from syrupy import SnapshotAssertion
|
||||
|
||||
from homeassistant.core import HomeAssistant
|
||||
|
||||
from . import setup_integration
|
||||
|
||||
from tests.common import MockConfigEntry
|
||||
from tests.components.diagnostics import get_diagnostics_for_config_entry
|
||||
from tests.typing import ClientSessionGenerator
|
||||
|
||||
|
||||
async def test_diagnostics_polling_instance(
|
||||
hass: HomeAssistant,
|
||||
hass_client: ClientSessionGenerator,
|
||||
mock_airgradient_client: AsyncMock,
|
||||
mock_config_entry: MockConfigEntry,
|
||||
snapshot: SnapshotAssertion,
|
||||
) -> None:
|
||||
"""Test diagnostics."""
|
||||
await setup_integration(hass, mock_config_entry)
|
||||
|
||||
assert (
|
||||
await get_diagnostics_for_config_entry(hass, hass_client, mock_config_entry)
|
||||
== snapshot
|
||||
)
|
||||
Reference in New Issue
Block a user