uploader.py 299 B

123456789101112131415
  1. import unittest
  2. from lib import Uploader, __version__
  3. #on which port should the tests be performed
  4. PORT = 'loop://'
  5. #which speed should the tests use
  6. BAUD = 115200
  7. class UploaderTestCase(unittest.TestCase):
  8. def test_initialize(self):
  9. uploader = Uploader(PORT, BAUD)