6 lines
268 B
Python
6 lines
268 B
Python
"""Constants for integration_blueprint tests."""
|
|
from custom_components.integration_blueprint.const import CONF_PASSWORD, CONF_USERNAME
|
|
|
|
# Mock config data to be used across multiple tests
|
|
MOCK_CONFIG = {CONF_USERNAME: "test_username", CONF_PASSWORD: "test_password"}
|