12 lines
266 B
Python
12 lines
266 B
Python
|
"""Common fixtures and objects for the LG Netcast integration tests."""
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
from tests.common import async_mock_service
|
||
|
|
||
|
|
||
|
@pytest.fixture
|
||
|
def calls(hass):
|
||
|
"""Track calls to a mock service."""
|
||
|
return async_mock_service(hass, "test", "automation")
|