mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-24 20:06:25 +01:00
12 lines
243 B
Python
12 lines
243 B
Python
"""Test configuration for Shelly."""
|
|
import pytest
|
|
|
|
from tests.async_mock import patch
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def mock_coap():
|
|
"""Mock out coap."""
|
|
with patch("homeassistant.components.shelly.get_coap_context"):
|
|
yield
|