24 lines
697 B
Python
24 lines
697 B
Python
|
"""Tests for the Whirlpool Sixth Sense integration."""
|
||
|
from homeassistant.components.whirlpool.const import DOMAIN
|
||
|
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
||
|
from homeassistant.core import HomeAssistant
|
||
|
|
||
|
from tests.common import MockConfigEntry
|
||
|
|
||
|
|
||
|
async def init_integration(hass: HomeAssistant) -> MockConfigEntry:
|
||
|
"""Set up the Whirlpool integration in Home Assistant."""
|
||
|
entry = MockConfigEntry(
|
||
|
domain=DOMAIN,
|
||
|
data={
|
||
|
CONF_USERNAME: "nobody",
|
||
|
CONF_PASSWORD: "qwerty",
|
||
|
},
|
||
|
)
|
||
|
|
||
|
entry.add_to_hass(hass)
|
||
|
await hass.config_entries.async_setup(entry.entry_id)
|
||
|
await hass.async_block_till_done()
|
||
|
|
||
|
return entry
|