Move fixtures part 1 (#58902)

This commit is contained in:
Paulus Schoutsen 2021-11-01 20:47:05 -07:00 committed by GitHub
parent 0a94badb72
commit 31153ac155
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
561 changed files with 188 additions and 991 deletions

View file

@ -68,7 +68,7 @@ from homeassistant.util import json as json_util
from .util import PATH_HOMEKIT, async_init_entry, async_init_integration
from tests.common import MockConfigEntry
from tests.common import MockConfigEntry, get_fixture_path
IP_ADDRESS = "127.0.0.1"
@ -1536,11 +1536,7 @@ async def test_reload(hass, mock_zeroconf):
entry.title,
devices=[],
)
yaml_path = os.path.join(
_get_fixtures_base_path(),
"fixtures",
"homekit/configuration.yaml",
)
yaml_path = get_fixture_path("configuration.yaml", "homekit")
with patch.object(hass_config, "YAML_CONFIG_FILE", yaml_path), patch(
f"{PATH_HOMEKIT}.HomeKit"
) as mock_homekit2, patch.object(homekit.bridge, "add_accessory"), patch(
@ -1577,10 +1573,6 @@ async def test_reload(hass, mock_zeroconf):
)
def _get_fixtures_base_path():
return os.path.dirname(os.path.dirname(os.path.dirname(__file__)))
async def test_homekit_start_in_accessory_mode(
hass, hk_driver, mock_zeroconf, device_reg
):