mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-07-10 18:56:30 +00:00
Remove Home Panel Discovery (#1594)
* Remove Home Panel Discovery * Remove related tests
This commit is contained in:
parent
069bed8815
commit
3010bd4eb6
@ -1,11 +0,0 @@
|
|||||||
"""Discovery service for Home Panel."""
|
|
||||||
import voluptuous as vol
|
|
||||||
|
|
||||||
from supervisor.validate import network_port
|
|
||||||
|
|
||||||
from ..const import ATTR_HOST, ATTR_PORT
|
|
||||||
|
|
||||||
|
|
||||||
SCHEMA = vol.Schema(
|
|
||||||
{vol.Required(ATTR_HOST): vol.Coerce(str), vol.Required(ATTR_PORT): network_port}
|
|
||||||
)
|
|
@ -1,19 +0,0 @@
|
|||||||
"""Test adguard discovery."""
|
|
||||||
|
|
||||||
import voluptuous as vol
|
|
||||||
import pytest
|
|
||||||
|
|
||||||
from supervisor.discovery.validate import valid_discovery_config
|
|
||||||
|
|
||||||
|
|
||||||
def test_good_config():
|
|
||||||
"""Test good deconz config."""
|
|
||||||
|
|
||||||
valid_discovery_config("home_panel", {"host": "test", "port": 3812})
|
|
||||||
|
|
||||||
|
|
||||||
def test_bad_config():
|
|
||||||
"""Test good adguard config."""
|
|
||||||
|
|
||||||
with pytest.raises(vol.Invalid):
|
|
||||||
valid_discovery_config("home_panel", {"host": "test"})
|
|
Loading…
x
Reference in New Issue
Block a user