Migrate MQTT from jsonpath to templates

This commit is contained in:
Paulus Schoutsen 2015-12-10 21:39:01 -08:00
parent d55fda28c2
commit 9a9ecb5916
7 changed files with 30 additions and 46 deletions

View file

@ -47,7 +47,7 @@ class TestSensorMQTT(unittest.TestCase):
'name': 'test',
'state_topic': 'test-topic',
'unit_of_measurement': 'fav unit',
'state_format': 'json:val'
'value_template': '{{ value_json.val }}'
}
}))
@ -56,4 +56,3 @@ class TestSensorMQTT(unittest.TestCase):
state = self.hass.states.get('sensor.test')
self.assertEqual('100', state.state)