mirror of https://github.com/home-assistant/core
16 lines
393 B
Python
16 lines
393 B
Python
"""Fixtures for Workday integration tests."""
|
|
|
|
from collections.abc import Generator
|
|
from unittest.mock import AsyncMock, patch
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_setup_entry() -> Generator[AsyncMock]:
|
|
"""Mock setting up a config entry."""
|
|
with patch(
|
|
"homeassistant.components.workday.async_setup_entry", return_value=True
|
|
) as mock_setup:
|
|
yield mock_setup
|