1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-22 10:55:50 +00:00
Files
core/tests/components/shelly/conftest.py
2020-12-01 19:26:43 +01:00

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