Remove deprecated speedtest service from Fast.com (#119780)

* Remove deprecated speedtest service from Fast.com

* Remove not needed tests
This commit is contained in:
G Johansson 2024-06-17 10:04:46 +02:00 committed by GitHub
parent d1d21811fa
commit 8556f3e7c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 0 additions and 204 deletions

View file

@ -10,7 +10,6 @@ from homeassistant.components.fastdotcom.const import DEFAULT_NAME, DOMAIN
from homeassistant.config_entries import ConfigEntryState
from homeassistant.const import EVENT_HOMEASSISTANT_STARTED, STATE_UNKNOWN
from homeassistant.core import CoreState, HomeAssistant
from homeassistant.helpers import issue_registry as ir
from tests.common import MockConfigEntry
@ -70,32 +69,3 @@ async def test_delayed_speedtest_during_startup(
assert state.state == "5.0"
assert config_entry.state is ConfigEntryState.LOADED
async def test_service_deprecated(
hass: HomeAssistant, issue_registry: ir.IssueRegistry
) -> None:
"""Test deprecated service."""
config_entry = MockConfigEntry(
domain=DOMAIN,
unique_id="UNIQUE_TEST_ID",
title=DEFAULT_NAME,
)
config_entry.add_to_hass(hass)
with patch(
"homeassistant.components.fastdotcom.coordinator.fast_com", return_value=5.0
):
await hass.config_entries.async_setup(config_entry.entry_id)
await hass.async_block_till_done()
await hass.services.async_call(
DOMAIN,
"speedtest",
{},
blocking=True,
)
await hass.async_block_till_done()
issue = issue_registry.async_get_issue(DOMAIN, "service_deprecation")
assert issue
assert issue.is_fixable is True
assert issue.translation_key == "service_deprecation"