* 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
11 lines
254 B
Python
11 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)
|