mirror of
https://github.com/home-assistant/core.git
synced 2026-05-18 22:40:15 +01:00
261ca2dd9a
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
13 lines
449 B
Python
13 lines
449 B
Python
"""Tests for the CentriConnect/MyPropane API integration."""
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def setup_integration(hass: HomeAssistant, config_entry: MockConfigEntry) -> None:
|
|
"""Set up the CentriConnect/MyPropane integration for testing."""
|
|
config_entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|