mirror of
https://github.com/home-assistant/core.git
synced 2026-07-03 20:56:06 +01:00
14 lines
495 B
Python
14 lines
495 B
Python
"""Tests for the melissa component."""
|
|
|
|
from homeassistant.components.melissa import DOMAIN
|
|
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, DOMAIN, VALID_CONFIG)
|
|
await hass.async_block_till_done()
|