mirror of
https://github.com/home-assistant/core.git
synced 2025-07-04 11:57:05 +00:00
14 lines
299 B
Python
14 lines
299 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",
|
|
}
|