mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-21 22:06:03 +01:00
14 lines
310 B
Python
14 lines
310 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",
|
|
}
|