mirror of
https://github.com/home-assistant/core.git
synced 2025-04-30 12:17:52 +00:00
11 lines
215 B
Python
11 lines
215 B
Python
"""Provide common smhi fixtures."""
|
|
import pytest
|
|
|
|
from tests.common import load_fixture
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def api_response():
|
|
"""Return an API response."""
|
|
return load_fixture("smhi.json")
|