* lower case aiosomecomfort * add tests * Test updates for 0.0.6 * lower case aiosomecomfort * Missing changes after merge * Add missing type hints * Fix tests for PR#89393 * Test hold on when setting temperature * Remove unnecessary init function * Remove unnecessary assert * Address missing tests Cleanup related to comments for EM * Move to snapshot for static test * Updated snapshot * Remove unnecessary assert
25 lines
707 B
Python
25 lines
707 B
Python
"""Tests for honeywell component."""
|
|
from unittest.mock import MagicMock
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def init_integration(
|
|
hass: HomeAssistant, entry: MockConfigEntry
|
|
) -> MockConfigEntry:
|
|
"""Set up the Honeywell integration in Home Assistant."""
|
|
entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
return entry
|
|
|
|
|
|
def reset_mock(device: MagicMock) -> None:
|
|
"""Reset the mocks for test."""
|
|
device.set_setpoint_cool.reset_mock()
|
|
device.set_setpoint_heat.reset_mock()
|
|
device.set_hold_heat.reset_mock()
|
|
device.set_hold_cool.reset_mock()
|