1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00
Files
core/tests/components/duotecno/conftest.py
2024-06-06 17:24:22 +02:00

16 lines
404 B
Python

"""Common fixtures for the duotecno 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.duotecno.async_setup_entry", return_value=True
) as mock_setup_entry:
yield mock_setup_entry