12 lines
222 B
Python
12 lines
222 B
Python
from pathlib import Path
|
|
|
|
from tests.common.mock import MockSource
|
|
|
|
OPENWEATHER_MOCK_SOURCE = MockSource(
|
|
Path(__file__).parent,
|
|
{
|
|
"forecast": "forecast.json",
|
|
"direct": "geo-direct.json",
|
|
},
|
|
)
|