* Remove unused "fibaro_fgs222" discovery hint * Simplify multilevel switch current value discovery schema * Force iBlinds v2.0 devices to be discovered as cover entities * Rename discovery test file
14 lines
481 B
Python
14 lines
481 B
Python
"""Test discovery of entities for device-specific schemas for the Z-Wave JS integration."""
|
|
|
|
|
|
async def test_iblinds_v2(hass, client, iblinds_v2, integration):
|
|
"""Test that an iBlinds v2.0 multilevel switch value is discovered as a cover."""
|
|
|
|
node = iblinds_v2
|
|
assert node.device_class.specific == "Unused"
|
|
|
|
state = hass.states.get("light.window_blind_controller")
|
|
assert not state
|
|
|
|
state = hass.states.get("cover.window_blind_controller")
|
|
assert state
|