Files
ha-core/tests/components/vodafone_station/const.py
2025-10-24 08:24:58 +02:00

15 lines
374 B
Python

"""Common stuff for Vodafone Station tests."""
from aiovodafone.models import DeviceType
DEVICE_1_HOST = "WifiDevice0"
DEVICE_1_MAC = "xx:xx:xx:xx:xx:xx"
DEVICE_2_HOST = "LanDevice1"
DEVICE_2_MAC = "yy:yy:yy:yy:yy:yy"
TEST_HOST = "fake_host"
TEST_PASSWORD = "fake_password"
TEST_TYPE = DeviceType.SERCOMM
TEST_URL = f"https://{TEST_HOST}"
TEST_USERNAME = "fake_username"