mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 21:06:19 +00:00
Adding weblink component
Adding weblink component tests
This commit is contained in:
29
tests/components/test_weblink.py
Normal file
29
tests/components/test_weblink.py
Normal file
@@ -0,0 +1,29 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
import unittest
|
||||
|
||||
import homeassistant.core as ha
|
||||
from homeassistant.components import weblink
|
||||
|
||||
|
||||
class TestComponentHistory(unittest.TestCase):
|
||||
""" Tests homeassistant.components.history module. """
|
||||
|
||||
def setUp(self):
|
||||
""" Test setup method. """
|
||||
self.hass = ha.HomeAssistant()
|
||||
|
||||
def tearDown(self):
|
||||
self.hass.stop()
|
||||
|
||||
def test_setup(self):
|
||||
self.assertTrue(weblink.setup(self.hass, {
|
||||
weblink.DOMAIN: {
|
||||
'entities': [
|
||||
{
|
||||
weblink.ATTR_NAME: 'My router',
|
||||
weblink.ATTR_URL: 'http://127.0.0.1/'
|
||||
},
|
||||
{}
|
||||
]
|
||||
}
|
||||
}))
|
||||
Reference in New Issue
Block a user