1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-28 12:43:44 +01:00

Add sensor tests for APSystems (#117512)

This commit is contained in:
Joost Lekkerkerker
2024-06-21 11:01:42 +02:00
committed by GitHub
parent 54d8ce5ca9
commit 53022df8a4
6 changed files with 560 additions and 19 deletions

View File

@@ -1 +1,12 @@
"""Tests for the APsystems Local API integration."""
from homeassistant.core import HomeAssistant
from tests.common import MockConfigEntry
async def setup_integration(hass: HomeAssistant, config_entry: MockConfigEntry) -> None:
"""Fixture for setting up the component."""
config_entry.add_to_hass(hass)
await hass.config_entries.async_setup(config_entry.entry_id)