Fix sql integration no recorder (#111263)

This commit is contained in:
G Johansson 2024-02-24 22:40:49 +01:00 committed by GitHub
parent cd46cc6e80
commit 5073842514
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 16 additions and 2 deletions

View file

@ -635,3 +635,13 @@ async def test_query_recover_from_rollback(
state = hass.states.get("sensor.select_value_sql_query")
assert state.state == "5"
assert state.attributes.get("value") == 5
async def test_setup_without_recorder(hass: HomeAssistant) -> None:
"""Test the SQL sensor without recorder."""
assert await async_setup_component(hass, DOMAIN, YAML_CONFIG)
await hass.async_block_till_done()
state = hass.states.get("sensor.get_value")
assert state.state == "5"