mirror of https://github.com/home-assistant/core
30 lines
564 B
Python
30 lines
564 B
Python
"""Cosntants for the Sense integration tests."""
|
|
|
|
MONITOR_ID = "456"
|
|
|
|
MOCK_CONFIG = {
|
|
"timeout": 6,
|
|
"email": "test-email",
|
|
"password": "test-password",
|
|
"access_token": "ABC",
|
|
"user_id": "123",
|
|
"monitor_id": MONITOR_ID,
|
|
"device_id": "789",
|
|
"refresh_token": "XYZ",
|
|
}
|
|
|
|
|
|
DEVICE_1_NAME = "Car"
|
|
DEVICE_1_ID = "abc123"
|
|
DEVICE_1_ICON = "car-electric"
|
|
DEVICE_1_POWER = 100.0
|
|
DEVICE_1_DAY_ENERGY = 500
|
|
|
|
DEVICE_2_NAME = "Oven"
|
|
DEVICE_2_ID = "def456"
|
|
DEVICE_2_ICON = "stove"
|
|
DEVICE_2_POWER = 50.0
|
|
DEVICE_2_DAY_ENERGY = 42
|
|
|
|
MONITOR_ID = "12345"
|