mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 09:47:52 +00:00
12 lines
232 B
Python
12 lines
232 B
Python
"""Fixtures for cloud tests."""
|
|
import pytest
|
|
|
|
from . import mock_cloud, mock_cloud_prefs
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_cloud_fixture(hass):
|
|
"""Fixture for cloud component."""
|
|
mock_cloud(hass)
|
|
return mock_cloud_prefs(hass)
|