mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 02:37:50 +00:00
11 lines
267 B
Python
11 lines
267 B
Python
"""Provide common mysensors fixtures."""
|
|
import pytest
|
|
|
|
from homeassistant.components.mqtt import DOMAIN as MQTT_DOMAIN
|
|
|
|
|
|
@pytest.fixture(name="mqtt")
|
|
async def mock_mqtt_fixture(hass):
|
|
"""Mock the MQTT integration."""
|
|
hass.config.components.add(MQTT_DOMAIN)
|