hass-core/tests/components/snooz/conftest.py
Austin Brunkhorst 7d097d18b0
Add support for Snooz BLE devices (#78790)
Co-authored-by: J. Nick Koston <nick@koston.org>
2022-10-10 13:14:27 -10:00

23 lines
591 B
Python

"""Snooz test fixtures and configuration."""
from __future__ import annotations
import pytest
from homeassistant.core import HomeAssistant
from . import SnoozFixture, create_mock_snooz, create_mock_snooz_config_entry
@pytest.fixture(autouse=True)
def mock_bluetooth(enable_bluetooth):
"""Auto mock bluetooth."""
@pytest.fixture()
async def mock_connected_snooz(hass: HomeAssistant):
"""Mock a Snooz configuration entry and device."""
device = await create_mock_snooz()
entry = await create_mock_snooz_config_entry(hass, device)
yield SnoozFixture(entry, device)