mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-04-26 14:17:16 +00:00

* Add known first party to isort configuration * Run isort on supervisor and tests folder
22 lines
515 B
Python
22 lines
515 B
Python
"""Test Zwave MQTT discovery."""
|
|
|
|
import pytest
|
|
import voluptuous as vol
|
|
|
|
from supervisor.discovery.validate import valid_discovery_config
|
|
|
|
|
|
def test_good_config():
|
|
"""Test good zwave mqtt config."""
|
|
|
|
valid_discovery_config(
|
|
"ozw", {"host": "test", "port": 3812, "username": "bla", "password": "test"},
|
|
)
|
|
|
|
|
|
def test_bad_config():
|
|
"""Test good zwave mqtt config."""
|
|
|
|
with pytest.raises(vol.Invalid):
|
|
valid_discovery_config("ozw", {"host": "test", "username": "bla", "ssl": True})
|