mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 10:17:51 +00:00
13 lines
255 B
Python
13 lines
255 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
|