mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 10:47:51 +00:00
12 lines
289 B
Python
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")
|