2021-09-03 08:13:35 +00:00
|
|
|
"""Broadlink test helpers."""
|
2024-03-08 13:50:25 +00:00
|
|
|
|
2021-09-03 08:13:35 +00:00
|
|
|
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
|