mirror of
https://github.com/home-assistant/core.git
synced 2026-06-30 19:26:31 +01:00
9f5cb635f0
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
17 lines
448 B
Python
17 lines
448 B
Python
"""Constants for the Swisscom Internet-Box integration tests."""
|
|
|
|
from homeassistant.const import CONF_HOST, CONF_PASSWORD, CONF_USERNAME
|
|
|
|
TEST_HOST = "192.168.1.1"
|
|
TEST_USERNAME = "admin"
|
|
TEST_PASSWORD = "test-password"
|
|
TEST_BASE_MAC = "AA:BB:CC:DD:EE:FF"
|
|
TEST_FORMATTED_MAC = "aa:bb:cc:dd:ee:ff"
|
|
TEST_MODEL_NAME = "Internet-Box plus"
|
|
|
|
USER_INPUT = {
|
|
CONF_HOST: TEST_HOST,
|
|
CONF_USERNAME: TEST_USERNAME,
|
|
CONF_PASSWORD: TEST_PASSWORD,
|
|
}
|