mirror of
https://github.com/home-assistant/core.git
synced 2025-05-01 04:37:52 +00:00

* Add bluetooth discovery * Use home assistant standard api * Fixup manufacture data * Adjust config flow to use standard features * Fixup tests * Mock bluetooth * Simplify device check * Fix missing typing Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
10 lines
210 B
Python
10 lines
210 B
Python
"""Standard fixtures for the Fjäråskupan integration."""
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def mock_bluetooth(enable_bluetooth):
|
|
"""Auto mock bluetooth."""
|