1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-23 20:39:01 +00:00

Clean up tests (#4209)

This commit is contained in:
Paulus Schoutsen
2016-11-03 21:58:18 -07:00
committed by GitHub
parent 6f68752d1e
commit e88b98f5fa
11 changed files with 42 additions and 5 deletions

View File

@@ -2,6 +2,7 @@
# pylint: disable=protected-access
import unittest
from homeassistant.core import callback
from homeassistant.bootstrap import setup_component
from homeassistant.components import script
@@ -54,6 +55,7 @@ class TestScriptComponent(unittest.TestCase):
event = 'test_event'
events = []
@callback
def record_event(event):
"""Add recorded event to set."""
events.append(event)
@@ -93,6 +95,7 @@ class TestScriptComponent(unittest.TestCase):
event = 'test_event'
events = []
@callback
def record_event(event):
"""Add recorded event to set."""
events.append(event)