Fix up docstring for tests (#5090)

This commit is contained in:
Johann Kellerman 2016-12-28 20:04:59 +02:00 committed by GitHub
parent 98efbbc129
commit f0b1874d2d
19 changed files with 61 additions and 59 deletions

View file

@ -28,7 +28,7 @@ class TestRemote(unittest.TestCase):
self.hass.stop()
def test_is_on(self):
""" Test is_on"""
"""Test is_on."""
self.hass.states.set('remote.test', STATE_ON)
self.assertTrue(remote.is_on(self.hass, 'remote.test'))
@ -42,7 +42,7 @@ class TestRemote(unittest.TestCase):
self.assertFalse(remote.is_on(self.hass))
def test_turn_on(self):
""" Test turn_on"""
"""Test turn_on."""
turn_on_calls = mock_service(
self.hass, remote.DOMAIN, SERVICE_TURN_ON)
@ -58,7 +58,7 @@ class TestRemote(unittest.TestCase):
self.assertEqual(remote.DOMAIN, call.domain)
def test_turn_off(self):
""" Test turn_off"""
"""Test turn_off."""
turn_off_calls = mock_service(
self.hass, remote.DOMAIN, SERVICE_TURN_OFF)
@ -75,7 +75,7 @@ class TestRemote(unittest.TestCase):
self.assertEqual('entity_id_val', call.data[ATTR_ENTITY_ID])
def test_send_command(self):
""" Test send_command"""
"""Test send_command."""
send_command_calls = mock_service(
self.hass, remote.DOMAIN, SERVICE_SEND_COMMAND)