12 lines
356 B
Python
12 lines
356 B
Python
|
"""Test fixtures for calendar sensor platforms."""
|
||
|
import pytest
|
||
|
|
||
|
from homeassistant.core import HomeAssistant
|
||
|
from homeassistant.setup import async_setup_component
|
||
|
|
||
|
|
||
|
@pytest.fixture(autouse=True)
|
||
|
async def setup_homeassistant(hass: HomeAssistant):
|
||
|
"""Set up the homeassistant integration."""
|
||
|
await async_setup_component(hass, "homeassistant", {})
|