Skip to content

Commit

Permalink
Add an additional check for 'get_device_properties()' (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffLIrion committed Jun 6, 2020
1 parent af7be53 commit 299de3c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_basetv.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,10 @@ def test_get_device_properties(self):
device_properties = self.btv.get_device_properties()
self.assertDictEqual({}, device_properties)

with patchers.patch_shell('')[self.PATCH_KEY]:
device_properties = self.btv.get_device_properties()
self.assertDictEqual({}, device_properties)

def test_awake(self):
"""Check that the ``awake`` property works correctly.
Expand Down

0 comments on commit 299de3c

Please sign in to comment.