mirror of https://github.com/home-assistant/core
24 lines
567 B
Python
24 lines
567 B
Python
"""Configuration for Sentry tests."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.sentry.const import DOMAIN
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
@pytest.fixture(name="config_entry")
|
|
def config_entry_fixture() -> MockConfigEntry:
|
|
"""Create a mock config entry."""
|
|
return MockConfigEntry(domain=DOMAIN, title="Sentry")
|
|
|
|
|
|
@pytest.fixture(name="config")
|
|
def config_fixture() -> dict[str, Any]:
|
|
"""Create hass config fixture."""
|
|
return {DOMAIN: {"dsn": "http://public@sentry.local/1"}}
|