* lower case aiosomecomfort * add tests * Test updates for 0.0.6 * lower case aiosomecomfort * Missing changes after merge * Add missing type hints * Fix tests for PR#89393 * Test hold on when setting temperature * Remove unnecessary init function * Remove unnecessary assert * Address missing tests Cleanup related to comments for EM * Move to snapshot for static test * Updated snapshot * Remove unnecessary assert
38 lines
872 B
Text
38 lines
872 B
Text
# serializer version: 1
|
|
# name: test_static_attributes
|
|
ReadOnlyDict({
|
|
'aux_heat': 'off',
|
|
'current_humidity': 50,
|
|
'current_temperature': -6.7,
|
|
'fan_action': 'idle',
|
|
'fan_mode': 'auto',
|
|
'fan_modes': list([
|
|
'on',
|
|
'auto',
|
|
'diffuse',
|
|
]),
|
|
'friendly_name': 'device1',
|
|
'humidity': None,
|
|
'hvac_modes': list([
|
|
<HVACMode.OFF: 'off'>,
|
|
<HVACMode.HEAT_COOL: 'heat_cool'>,
|
|
<HVACMode.COOL: 'cool'>,
|
|
<HVACMode.HEAT: 'heat'>,
|
|
]),
|
|
'max_humidity': 99,
|
|
'max_temp': 1.7,
|
|
'min_humidity': 30,
|
|
'min_temp': -13.9,
|
|
'permanent_hold': False,
|
|
'preset_mode': None,
|
|
'preset_modes': list([
|
|
'none',
|
|
'away',
|
|
'Hold',
|
|
]),
|
|
'supported_features': <ClimateEntityFeature: 95>,
|
|
'target_temp_high': None,
|
|
'target_temp_low': None,
|
|
'temperature': None,
|
|
})
|
|
# ---
|