hass-core/tests/components/waze_travel_time/const.py
Kevin Stillhammer 609a7ccda8
Use Selectors for waze_travel_time flows ()
* Use Selectors for waze_travel_time flows

* Use correct selector option in tests

* Remove duplicate option

* Use suggested values
2023-04-21 12:57:45 +02:00

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",
}