mirror of https://github.com/home-assistant/core
21 lines
565 B
Python
21 lines
565 B
Python
"""Define fixtures available for all Acmeda tests."""
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.acmeda.const import DOMAIN
|
|
from homeassistant.const import CONF_HOST
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_config_entry(hass: HomeAssistant) -> MockConfigEntry:
|
|
"""Return the default mocked config entry."""
|
|
mock_config_entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
data={CONF_HOST: "127.0.0.1"},
|
|
)
|
|
mock_config_entry.add_to_hass(hass)
|
|
return mock_config_entry
|