1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-28 13:56:28 +00:00
Files
core/tests/components/climacell/test_const.py
2022-01-17 15:39:43 +01:00

15 lines
443 B
Python

"""Tests for ClimaCell const."""
import pytest
from homeassistant.components.climacell.const import ClimaCellSensorEntityDescription
from homeassistant.const import TEMP_FAHRENHEIT
async def test_post_init():
"""Test post initialization check for ClimaCellSensorEntityDescription."""
with pytest.raises(RuntimeError):
ClimaCellSensorEntityDescription(
key="a", name="b", unit_imperial=TEMP_FAHRENHEIT
)