mirror of
https://github.com/home-assistant/core.git
synced 2025-04-29 19:57:52 +00:00
12 lines
276 B
Python
12 lines
276 B
Python
"""Tests for the CO2 Signal integration."""
|
|
|
|
VALID_PAYLOAD = {
|
|
"status": "ok",
|
|
"countryCode": "FR",
|
|
"data": {
|
|
"carbonIntensity": 45.98623190095805,
|
|
"fossilFuelPercentage": 5.461182741937103,
|
|
},
|
|
"units": {"carbonIntensity": "gCO2eq/kWh"},
|
|
}
|