11 lines
185 B
Python
11 lines
185 B
Python
from pathlib import Path
|
|
|
|
from tests.common.mock import MockSource
|
|
|
|
OPENWEATHER_MOCK_SOURCE = MockSource(
|
|
Path(__file__).parent,
|
|
{
|
|
"forecast": "forecast.json",
|
|
},
|
|
)
|