mirror of https://github.com/home-assistant/core
26 lines
817 B
Python
26 lines
817 B
Python
"""Sensor tests for the Sabnzbd component."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
from syrupy 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
|
|
|
|
|
|
@patch("homeassistant.components.sabnzbd.PLATFORMS", [Platform.SENSOR])
|
|
@pytest.mark.usefixtures("entity_registry_enabled_by_default")
|
|
async def test_sensor(
|
|
hass: HomeAssistant,
|
|
entity_registry: er.EntityRegistry,
|
|
config_entry: MockConfigEntry,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test sensor setup."""
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await snapshot_platform(hass, entity_registry, snapshot, config_entry.entry_id)
|