1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Fix py38 tests (#34658)

This commit is contained in:
Paulus Schoutsen
2020-04-24 15:09:45 -07:00
committed by GitHub
parent 40d3d64027
commit 9a4a83cb91
7 changed files with 92 additions and 124 deletions

View File

@@ -0,0 +1,22 @@
"""Test configuration for PS4."""
from asynctest import patch
import pytest
@pytest.fixture
def patch_load_json():
"""Prevent load JSON being used."""
with patch("homeassistant.components.ps4.load_json", return_value={}) as mock_load:
yield mock_load
@pytest.fixture
def patch_save_json():
"""Prevent save JSON being used."""
with patch("homeassistant.components.ps4.save_json") as mock_save:
yield mock_save
@pytest.fixture(autouse=True)
def patch_io(patch_load_json, patch_save_json):
"""Prevent PS4 doing I/O."""