Files
plexpy/test/models/test_get_devices_response.py
2023-10-26 22:45:52 -05:00

17 lines
469 B
Python

import unittest
from src.plexsdk.models.GetDevicesResponse import GetDevicesResponse
class TestGetDevicesResponseModel(unittest.TestCase):
def test_true(self):
self.assertTrue(True)
def test_get_devices_response(self):
# Create GetDevicesResponse class instance
test_model = GetDevicesResponse(MediaContainer={"est": 3})
self.assertEqual(test_model.MediaContainer, {"est": 3})
if __name__ == "__main__":
unittest.main()