1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Rename Light to LightEntity (#34593)

This commit is contained in:
Erik Montnemery
2020-04-26 18:49:41 +02:00
committed by GitHub
parent 8402363568
commit e4333a7a44
93 changed files with 248 additions and 191 deletions

View File

@@ -548,3 +548,13 @@ async def test_light_brightness_pct_conversion(hass):
_, data = entity.last_call("turn_on")
assert data["brightness"] == 255, data
def test_deprecated_base_class(caplog):
"""Test deprecated base class."""
class CustomLight(light.Light):
pass
CustomLight()
assert "Light is deprecated, modify CustomLight" in caplog.text