mirror of
https://github.com/home-assistant/core.git
synced 2025-05-04 22:19:17 +00:00

* Fetch flux_led effects from library - Each model can have different effects * Improve support for flux_led pixel/RBM controllers - RBM effects 1-100 are now available * empty
12 lines
254 B
Python
12 lines
254 B
Python
"""Tests for the flux_led integration."""
|
|
|
|
import pytest
|
|
|
|
from tests.common import mock_device_registry
|
|
|
|
|
|
@pytest.fixture(name="device_reg")
|
|
def device_reg_fixture(hass):
|
|
"""Return an empty, loaded, registry."""
|
|
return mock_device_registry(hass)
|