mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 10:47:51 +00:00
12 lines
240 B
Python
12 lines
240 B
Python
"""Test configuration for Shelly."""
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def mock_coap():
|
|
"""Mock out coap."""
|
|
with patch("homeassistant.components.shelly.get_coap_context"):
|
|
yield
|