From 881901f4d3225769d519f8221c79cc952a736aef Mon Sep 17 00:00:00 2001 From: Ryan Kraus Date: Mon, 31 Aug 2015 02:48:26 -0400 Subject: [PATCH] Removed bogus intro test. --- tests/components/test_introduction.py | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 tests/components/test_introduction.py diff --git a/tests/components/test_introduction.py b/tests/components/test_introduction.py deleted file mode 100644 index ed9e592096e..00000000000 --- a/tests/components/test_introduction.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -tests.components.test_introduction -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Tests Introduction component. -""" -# pylint: disable=too-many-public-methods,protected-access -import unittest - -import homeassistant.core as ha -import homeassistant.components.introduction as introduction - - -class TestIntroduction(unittest.TestCase): - """ Test the introduction module. """ - - def setUp(self): # pylint: disable=invalid-name - self.hass = ha.HomeAssistant() - - def tearDown(self): # pylint: disable=invalid-name - """ Stop down stuff we started. """ - self.hass.stop() - - def test_setup(self): - """ Create introduction entity. """ - introduction.setup(self.hass)