mirror of
https://github.com/home-assistant/core.git
synced 2026-04-30 13:41:18 +01:00
28 lines
622 B
Plaintext
28 lines
622 B
Plaintext
# serializer version: 1
|
|
# name: test_service_get_forecast
|
|
dict({
|
|
'forecast': tuple(
|
|
dict({
|
|
'advice': 'code_yellow',
|
|
'datetime': '2025-02-12T17:00:00+01:00',
|
|
'final': True,
|
|
}),
|
|
dict({
|
|
'advice': 'code_yellow',
|
|
'datetime': '2025-02-12T23:00:00+01:00',
|
|
'final': True,
|
|
}),
|
|
dict({
|
|
'advice': 'code_orange',
|
|
'datetime': '2025-02-13T05:00:00+01:00',
|
|
'final': False,
|
|
}),
|
|
dict({
|
|
'advice': 'code_orange',
|
|
'datetime': '2025-02-13T11:00:00+01:00',
|
|
'final': False,
|
|
}),
|
|
),
|
|
})
|
|
# ---
|