mirror of https://github.com/home-assistant/core
26 lines
591 B
Python
26 lines
591 B
Python
"""Provide common smhi fixtures."""
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.smhi.const import DOMAIN
|
|
|
|
from tests.common import load_fixture
|
|
|
|
|
|
@pytest.fixture(scope="package")
|
|
def api_response():
|
|
"""Return an API response."""
|
|
return load_fixture("smhi.json", DOMAIN)
|
|
|
|
|
|
@pytest.fixture(scope="package")
|
|
def api_response_night():
|
|
"""Return an API response for night only."""
|
|
return load_fixture("smhi_night.json", DOMAIN)
|
|
|
|
|
|
@pytest.fixture(scope="package")
|
|
def api_response_lack_data():
|
|
"""Return an API response."""
|
|
return load_fixture("smhi_short.json", DOMAIN)
|