Skip to content
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.

Commit

Permalink
Add an additional check for 'get_device_properties()'
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffLIrion committed Jun 6, 2020
1 parent 44bf02f commit 0e7cce2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_basetv.py
Expand Up @@ -335,6 +335,10 @@ async def test_get_device_properties(self):
device_properties = await self.btv.get_device_properties()
self.assertDictEqual({}, device_properties)

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

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

0 comments on commit 0e7cce2

Please sign in to comment.