1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-21 22:37:07 +00:00
2021-07-22 08:11:36 -10:00

12 lines
289 B
Python

"""Mock connections for Insteon."""
async def mock_successful_connection(*args, **kwargs):
"""Return a successful connection."""
return True
async def mock_failed_connection(*args, **kwargs):
"""Return a failed connection."""
raise ConnectionError("Connection failed")