11 lines
254 B
Python
11 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
|