21 lines
627 B
Python
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)
|