Fix for SmartStrip repr (#169)

* Added unit tests for repr.

* Fix repr for SmartStrip.

Fixes #165
This commit is contained in:
Alex
2019-04-08 21:19:42 -07:00
committed by Teemu R
parent 960ec6a346
commit 461440e8b1
4 changed files with 13 additions and 1 deletions

View File

@@ -225,6 +225,9 @@ class TestSmartBulb(TestCase):
with self.assertRaises(SmartDeviceException):
self.bulb.hsv = (0, 0, invalid_brightness)
def test_repr(self):
repr(self.bulb)
class TestSmartBulbLB100(TestSmartBulb):
SYSINFO = sysinfo_lb100

View File

@@ -271,6 +271,9 @@ class TestSmartPlugHS100(TestCase):
self.sysinfo_schema({'mac': self.plug.mac}) # wrapping for val
# TODO check setting?
def test_repr(self):
repr(self.plug)
class TestSmartPlugHS110(TestSmartPlugHS100):
SYSINFO = sysinfo_hs110

View File

@@ -436,3 +436,6 @@ class TestSmartStripHS300(TestCase):
def test_mac(self):
self.sysinfo_schema({'mac': self.strip.mac}) # wrapping for vol
def test_repr(self):
repr(self.strip)