mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-28 07:07:18 +01: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
|