mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-23 11:43:34 +00:00
13 lines
289 B
Python
13 lines
289 B
Python
|
from kasa.smart import SmartDevice
|
||
|
|
||
|
from .conftest import (
|
||
|
brightness,
|
||
|
)
|
||
|
|
||
|
|
||
|
@brightness
|
||
|
async def test_brightness_component(dev: SmartDevice):
|
||
|
"""Placeholder to test framwework component filter."""
|
||
|
assert isinstance(dev, SmartDevice)
|
||
|
assert "brightness" in dev._components
|