* Use Selectors for waze_travel_time flows * Use correct selector option in tests * Remove duplicate option * Use suggested values
19 lines
417 B
Python
19 lines
417 B
Python
"""Constants for waze_travel_time tests."""
|
|
|
|
from homeassistant.components.waze_travel_time.const import (
|
|
CONF_DESTINATION,
|
|
CONF_ORIGIN,
|
|
)
|
|
from homeassistant.const import CONF_REGION
|
|
|
|
MOCK_CONFIG = {
|
|
CONF_ORIGIN: "location1",
|
|
CONF_DESTINATION: "location2",
|
|
CONF_REGION: "US",
|
|
}
|
|
|
|
CONFIG_FLOW_USER_INPUT = {
|
|
CONF_ORIGIN: "location1",
|
|
CONF_DESTINATION: "location2",
|
|
CONF_REGION: "us",
|
|
}
|