Add commander test class

This commit is contained in:
DSTO\pivatom
2018-12-19 16:31:44 +10:30
parent a810ef640a
commit ab739872b3

13
tests/test_commander.py Normal file
View File

@@ -0,0 +1,13 @@
import unittest
import Messaging.mqttsession as ms
class TestCommander(unittest.TestCase):
ms.client = FakeMQTT()
class FakeMQTT:
def __init__(self):
pass
def add_subsc