core/tests/components/opensky/__init__.py

13 lines
380 B
Python
Raw Normal View History

"""Opensky tests."""
from homeassistant.core import HomeAssistant
from tests.common import MockConfigEntry
2023-08-22 16:06:19 +00:00
async def setup_integration(hass: HomeAssistant, config_entry: MockConfigEntry) -> None:
"""Set up the integration."""
config_entry.add_to_hass(hass)
assert await hass.config_entries.async_setup(config_entry.entry_id)
await hass.async_block_till_done()