mirror of
https://github.com/home-assistant/core.git
synced 2026-05-08 17:49:37 +01:00
cbb1f3726c
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
11 lines
318 B
Python
11 lines
318 B
Python
"""Common utils for Litter-Robot tests."""
|
|
|
|
from homeassistant.components.litterrobot import DOMAIN
|
|
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
|
|
|
CONFIG = {DOMAIN: {CONF_USERNAME: "user@example.com", CONF_PASSWORD: "password"}}
|
|
|
|
ACCOUNT_USER_ID = "1234567"
|
|
|
|
VACUUM_ENTITY_ID = "vacuum.test_litter_box"
|