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:
parent
f0c625b2ad
commit
0678ab4e45
13 changed files with 399 additions and 90 deletions
14
tests/components/voip/test_init.py
Normal file
14
tests/components/voip/test_init.py
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue