mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 05:07:41 +00:00
Removes I/O from linky tests (#31299)
This commit is contained in:
parent
cf0e467150
commit
da14e2927f
11
tests/components/linky/conftest.py
Normal file
11
tests/components/linky/conftest.py
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
"""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
|
Loading…
x
Reference in New Issue
Block a user