mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-22 22:05:25 +01: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)
|