Files
core/tests/components/compit/consts.py
Przemko92 fa8a4d7098 Add Compit integration (#132164)
Co-authored-by: Abílio Costa <abmantis@users.noreply.github.com>
2025-09-18 21:53:49 +01:00

9 lines
194 B
Python

"""Constants for the Compit component tests."""
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD
CONFIG_INPUT = {
CONF_EMAIL: "test@example.com",
CONF_PASSWORD: "password",
}