core/tests/components/solarlog/__init__.py

22 lines
623 B
Python

"""Tests for the solarlog integration."""
from unittest.mock import patch
from homeassistant.const import Platform
from homeassistant.core import HomeAssistant
from tests.common import MockConfigEntry
async def setup_platform(
hass: HomeAssistant, config_entry: MockConfigEntry, platforms: list[Platform]
) -> MockConfigEntry:
"""Set up the SolarLog platform."""
config_entry.add_to_hass(hass)
with patch("homeassistant.components.solarlog.PLATFORMS", platforms):
await hass.config_entries.async_setup(config_entry.entry_id)
await hass.async_block_till_done()
return config_entry