20 lines
442 B
Python
20 lines
442 B
Python
"""eafm fixtures."""
|
|
|
|
import pytest
|
|
|
|
from tests.async_mock import patch
|
|
|
|
|
|
@pytest.fixture()
|
|
def mock_get_stations():
|
|
"""Mock aioeafm.get_stations."""
|
|
with patch("homeassistant.components.eafm.config_flow.get_stations") as patched:
|
|
yield patched
|
|
|
|
|
|
@pytest.fixture()
|
|
def mock_get_station():
|
|
"""Mock aioeafm.get_station."""
|
|
with patch("homeassistant.components.eafm.sensor.get_station") as patched:
|
|
yield patched
|