1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-30 12:14:20 +01:00
Files
core/tests/components/sabnzbd/test_sensor.py
T
2024-11-19 21:17:38 +01:00

21 lines
627 B
Python

"""Sensor tests for the Sabnzbd component."""
import pytest
from syrupy import SnapshotAssertion
from homeassistant.core import HomeAssistant
from homeassistant.helpers import entity_registry as er
from tests.common import MockConfigEntry, snapshot_platform
@pytest.mark.usefixtures("entity_registry_enabled_by_default", "setup_integration")
async def test_sensor(
hass: HomeAssistant,
entity_registry: er.EntityRegistry,
config_entry: MockConfigEntry,
snapshot: SnapshotAssertion,
) -> None:
"""Test sensor setup."""
await snapshot_platform(hass, entity_registry, snapshot, config_entry.entry_id)