Files
ha-core/tests/components/lacrosse_view/conftest.py
2024-06-06 17:28:59 +02:00

16 lines
410 B
Python

"""Define fixtures for LaCrosse View tests."""
from unittest.mock import AsyncMock, patch
import pytest
from typing_extensions import Generator
@pytest.fixture
def mock_setup_entry() -> Generator[AsyncMock]:
"""Override async_setup_entry."""
with patch(
"homeassistant.components.lacrosse_view.async_setup_entry", return_value=True
) as mock_setup_entry:
yield mock_setup_entry