core/tests/components/sabnzbd/test_sensor.py

21 lines
627 B
Python
Raw Normal View History

2024-11-19 20:17:38 +00:00
"""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)