mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 02:37:50 +00:00
12 lines
253 B
Python
12 lines
253 B
Python
"""conftest for zeroconf."""
|
|
import pytest
|
|
|
|
from tests.async_mock import patch
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_zeroconf():
|
|
"""Mock zeroconf."""
|
|
with patch("homeassistant.components.zeroconf.HaZeroconf") as mock_zc:
|
|
yield mock_zc.return_value
|