core/tests/components/melissa/__init__.py

13 lines
446 B
Python
Raw Normal View History

"""Tests for the melissa component."""
2024-03-13 18:54:52 +00:00
from homeassistant.core import HomeAssistant
from homeassistant.setup import async_setup_component
VALID_CONFIG = {"melissa": {"username": "********", "password": "********"}}
async def setup_integration(hass: HomeAssistant) -> None:
"""Set up the melissa integration in Home Assistant."""
assert await async_setup_component(hass, "melissa", VALID_CONFIG)
await hass.async_block_till_done()