mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 19:27:51 +00:00
12 lines
254 B
Python
12 lines
254 B
Python
"""Broadlink test helpers."""
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def mock_heartbeat():
|
|
"""Mock broadlink heartbeat."""
|
|
with patch("homeassistant.components.broadlink.heartbeat.blk.ping"):
|
|
yield
|