mirror of
https://github.com/home-assistant/core.git
synced 2026-08-29 02:35:05 -05:00
17 lines
363 B
Python
17 lines
363 B
Python
"""Constants for the MadVR tests."""
|
|
|
|
from homeassistant.const import CONF_HOST, CONF_PORT
|
|
|
|
MOCK_CONFIG = {
|
|
CONF_HOST: "192.168.1.1",
|
|
CONF_PORT: 44077,
|
|
}
|
|
|
|
MOCK_MAC = "00:11:22:33:44:55"
|
|
MOCK_MAC_NEW = "00:00:00:00:00:01"
|
|
|
|
TEST_CON_ERROR = ConnectionError("Connection failed")
|
|
TEST_IMP_ERROR = NotImplementedError("Not implemented")
|
|
|
|
TEST_COMMAND = "test"
|