Update for file header, docstrings, and PEP8/PEP257

This commit is contained in:
Fabian Affolter
2016-02-13 14:19:11 +01:00
parent 34b91cf6ce
commit 00afaac54c
74 changed files with 212 additions and 211 deletions

View File

@@ -1,10 +1,9 @@
"""
tests.components.sensor.command_sensor
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
tests.components.sensor.test_command_sensor
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Tests command sensor.
"""
import unittest
import homeassistant.core as ha
@@ -12,7 +11,7 @@ from homeassistant.components.sensor import command_sensor
class TestCommandSensorSensor(unittest.TestCase):
""" Test the Template sensor. """
""" Test the Command line sensor. """
def setUp(self):
self.hass = ha.HomeAssistant()
@@ -22,7 +21,7 @@ class TestCommandSensorSensor(unittest.TestCase):
self.hass.stop()
def test_setup(self):
""" Test sensor setup """
""" Test sensor setup. """
config = {'name': 'Test',
'unit_of_measurement': 'in',
'command': 'echo 5'}
@@ -43,7 +42,7 @@ class TestCommandSensorSensor(unittest.TestCase):
self.assertEqual('5', entity.state)
def test_setup_bad_config(self):
""" Test setup with a bad config """
""" Test setup with a bad configuration. """
config = {}
devices = []
@@ -59,7 +58,7 @@ class TestCommandSensorSensor(unittest.TestCase):
self.assertEqual(0, len(devices))
def test_template(self):
""" Test command sensor with template """
""" Test command sensor with template. """
data = command_sensor.CommandSensorData('echo 50')
entity = command_sensor.CommandSensor(
@@ -68,7 +67,7 @@ class TestCommandSensorSensor(unittest.TestCase):
self.assertEqual(5, float(entity.state))
def test_bad_command(self):
""" Test bad command """
""" Test bad command. """
data = command_sensor.CommandSensorData('asdfasdf')
data.update()

View File

@@ -1,6 +1,6 @@
"""
tests.components.sensor.test_mfi
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Tests mFi sensor.
"""

View File

@@ -2,7 +2,7 @@
tests.components.sensor.test_mqtt
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Tests mqtt sensor.
Tests MQTT sensor.
"""
import unittest

View File

@@ -1,10 +1,9 @@
"""
tests.components.sensor.template
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
tests.components.sensor.test_template
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Tests template sensor.
"""
import homeassistant.core as ha
import homeassistant.components.sensor as sensor

View File

@@ -1,6 +1,6 @@
"""
tests.components.sensor.test_yr
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Tests Yr sensor.
"""
@@ -73,7 +73,7 @@ class TestSensorYr:
assert '1025.1' == state.state
state = self.hass.states.get('sensor.yr_wind_direction')
assert '°'== state.attributes.get('unit_of_measurement')
assert '°' == state.attributes.get('unit_of_measurement')
assert '81.8' == state.state
state = self.hass.states.get('sensor.yr_humidity')