mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-22 04:05:32 +01: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")
|