mirror of
https://github.com/elisspace/core.git
synced 2026-09-23 19:17:06 +00:00
12 lines
231 B
Python
12 lines
231 B
Python
"""Test helpers for Freebox."""
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def mock_path():
|
|
"""Mock path lib."""
|
|
with patch("homeassistant.components.freebox.router.Path"):
|
|
yield
|