core/tests/components/tradfri/conftest.py

22 lines
518 B
Python
Raw Normal View History

"""Common tradfri test fixtures."""
import pytest
from tests.async_mock import patch
@pytest.fixture
def mock_gateway_info():
"""Mock get_gateway_info."""
2019-07-31 19:25:30 +00:00
with patch(
"homeassistant.components.tradfri.config_flow.get_gateway_info"
2019-07-31 19:25:30 +00:00
) as mock_gateway:
yield mock_gateway
@pytest.fixture
def mock_entry_setup():
"""Mock entry setup."""
with patch("homeassistant.components.tradfri.async_setup_entry") as mock_setup:
2020-04-25 21:32:55 +00:00
mock_setup.return_value = True
yield mock_setup