hass-core/tests/components/google_travel_time/const.py
Kevin Stillhammer beb30a1ff1
Add google_travel_time sensor tests ()
Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>
2022-02-18 10:21:28 -08:00

14 lines
311 B
Python

"""Constants for google_travel_time tests."""
from homeassistant.components.google_travel_time.const import (
CONF_DESTINATION,
CONF_ORIGIN,
)
from homeassistant.const import CONF_API_KEY
MOCK_CONFIG = {
CONF_API_KEY: "api_key",
CONF_ORIGIN: "location1",
CONF_DESTINATION: "location2",
}