mirror of https://github.com/home-assistant/core
29 lines
749 B
Python
29 lines
749 B
Python
"""Common fixtures for forked_daapd tests."""
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.forked_daapd.const import CONF_TTS_PAUSE_TIME, DOMAIN
|
|
from homeassistant.config_entries import SOURCE_USER
|
|
from homeassistant.const import CONF_HOST, CONF_PASSWORD, CONF_PORT
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
@pytest.fixture(name="config_entry")
|
|
def config_entry_fixture() -> MockConfigEntry:
|
|
"""Create hass config_entry fixture."""
|
|
data = {
|
|
CONF_HOST: "192.168.1.1",
|
|
CONF_PORT: "2345",
|
|
CONF_PASSWORD: "",
|
|
}
|
|
return MockConfigEntry(
|
|
version=1,
|
|
domain=DOMAIN,
|
|
title="",
|
|
data=data,
|
|
options={CONF_TTS_PAUSE_TIME: 0},
|
|
source=SOURCE_USER,
|
|
entry_id=1,
|
|
)
|