core/tests/components/linky/conftest.py

12 lines
284 B
Python
Raw Normal View History

2020-01-30 05:59:24 +00:00
"""Linky generic test utils."""
from unittest.mock import patch
import pytest
@pytest.fixture(autouse=True)
def patch_fakeuseragent():
"""Stub out fake useragent dep that makes requests."""
with patch("pylinky.client.UserAgent", return_value="Test Browser"):
yield