Files
homeassistant-core/tests/components/microbees/__init__.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
368 B
Python
Raw Normal View History

2024-02-19 15:12:03 +01:00
"""Tests for the MicroBees component."""
2024-02-19 15:12:03 +01:00
from homeassistant.core import HomeAssistant
from tests.common import MockConfigEntry
async def setup_integration(hass: HomeAssistant, config_entry: MockConfigEntry) -> None:
"""Fixture for setting up the component."""
config_entry.add_to_hass(hass)
await hass.config_entries.async_setup(config_entry.entry_id)