hass-core/tests/components/ruuvi_gateway/consts.py
Aarni Koskela 38f183a683
Ruuvi Gateway integration (#84853)
Co-authored-by: J. Nick Koston <nick@koston.org>
2023-01-03 10:19:43 -10:00

12 lines
405 B
Python

"""Constants for ruuvi_gateway tests."""
from __future__ import annotations
ASYNC_SETUP_ENTRY = "homeassistant.components.ruuvi_gateway.async_setup_entry"
GET_GATEWAY_HISTORY_DATA = "aioruuvigateway.api.get_gateway_history_data"
EXPECTED_TITLE = "Ruuvi Gateway EE:FF"
BASE_DATA = {
"host": "1.1.1.1",
"token": "toktok",
}
GATEWAY_MAC = "AA:BB:CC:DD:EE:FF"
GATEWAY_MAC_LOWER = GATEWAY_MAC.lower()