core/tests/components/opower/conftest.py

25 lines
694 B
Python

"""Fixtures for the Opower integration tests."""
import pytest
from homeassistant.components.opower.const import DOMAIN
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."""
config_entry = MockConfigEntry(
title="Pacific Gas & Electric (test-username)",
domain=DOMAIN,
data={
"utility": "Pacific Gas and Electric Company (PG&E)",
"username": "test-username",
"password": "test-password",
},
)
config_entry.add_to_hass(hass)
return config_entry