Add VoIP entities (#91320)

* WIP

* Add VoIP entities to enable calls

* Mark voip entities as config only

* Remove commented code
This commit is contained in:
Paulus Schoutsen 2023-04-12 23:23:20 -04:00 committed by GitHub
parent f0c625b2ad
commit 0678ab4e45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 399 additions and 90 deletions

View file

@ -0,0 +1,14 @@
"""Test VoIP init."""
from homeassistant.core import HomeAssistant
# socket_enabled,
# unused_udp_port_factory,
async def test_unload_entry(
hass: HomeAssistant,
config_entry,
setup_voip,
) -> None:
"""Test adding/removing VoIP."""
assert await hass.config_entries.async_unload(config_entry.entry_id)