2018-09-20 21:46:51 +00:00
|
|
|
"""Fixtures for cloud tests."""
|
|
|
|
import pytest
|
|
|
|
|
2019-03-11 19:21:20 +00:00
|
|
|
from unittest.mock import patch
|
|
|
|
|
2018-09-20 21:46:51 +00:00
|
|
|
from . import mock_cloud, mock_cloud_prefs
|
|
|
|
|
|
|
|
|
2019-03-11 19:21:20 +00:00
|
|
|
@pytest.fixture(autouse=True)
|
|
|
|
def mock_user_data():
|
|
|
|
"""Mock os module."""
|
|
|
|
with patch('hass_nabucasa.Cloud.write_user_info') as writer:
|
|
|
|
yield writer
|
|
|
|
|
|
|
|
|
2018-09-20 21:46:51 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def mock_cloud_fixture(hass):
|
|
|
|
"""Fixture for cloud component."""
|
|
|
|
mock_cloud(hass)
|
|
|
|
return mock_cloud_prefs(hass)
|