mirror of
https://github.com/home-assistant/supervisor.git
synced 2026-05-08 17:08:36 +01:00
2ae93ae7b1
* Update API data for deconz * Fix tests
23 lines
500 B
Python
23 lines
500 B
Python
"""Test DeConz discovery."""
|
|
|
|
import voluptuous as vol
|
|
import pytest
|
|
|
|
from hassio.discovery.validate import valid_discovery_config
|
|
|
|
|
|
def test_good_config():
|
|
"""Test good deconz config."""
|
|
|
|
valid_discovery_config(
|
|
"deconz",
|
|
{"host": "test", "port": 3812, "api_key": "MY_api_KEY99", "serial": "xyz"},
|
|
)
|
|
|
|
|
|
def test_bad_config():
|
|
"""Test good deconz config."""
|
|
|
|
with pytest.raises(vol.Invalid):
|
|
valid_discovery_config("deconz", {"host": "test", "port": 8080})
|