Clean artifacts after running Ring tests. (#6944)

* Clean artifacts after running Ring tests.

* Clean artifacts from top level test_ring.py
This commit is contained in:
Marcelo Moreira de Mello 2017-04-05 05:26:56 -04:00 committed by Pascal Vizeli
parent 534187f4cd
commit a5f77d5f46
3 changed files with 30 additions and 3 deletions

View file

@ -1,4 +1,5 @@
"""The tests for the Ring sensor platform."""
import os
import unittest
import requests_mock
@ -6,7 +7,8 @@ from homeassistant.components.sensor import ring
from homeassistant.components import ring as base_ring
from tests.components.test_ring import ATTRIBUTION, VALID_CONFIG
from tests.common import get_test_home_assistant, load_fixture
from tests.common import (
get_test_config_dir, get_test_home_assistant, load_fixture)
class TestRingSensorSetup(unittest.TestCase):
@ -19,9 +21,15 @@ class TestRingSensorSetup(unittest.TestCase):
for device in devices:
self.DEVICES.append(device)
def cleanup(self):
"""Cleanup any data created from the tests."""
if os.path.isfile(self.cache):
os.remove(self.cache)
def setUp(self):
"""Initialize values for this testcase class."""
self.hass = get_test_home_assistant()
self.cache = get_test_config_dir(base_ring.DEFAULT_CACHEDB)
self.config = {
'username': 'foo',
'password': 'bar',
@ -36,6 +44,7 @@ class TestRingSensorSetup(unittest.TestCase):
def tearDown(self):
"""Stop everything that was started."""
self.hass.stop()
self.cleanup()
@requests_mock.Mocker()
def test_sensor(self, mock):