mirror of
https://github.com/LukeHagar/plexpy.git
synced 2025-12-06 04:20:52 +00:00
17 lines
512 B
Python
17 lines
512 B
Python
import unittest
|
|
from src.plexsdk.models.GetServerIdentityResponse import GetServerIdentityResponse
|
|
|
|
|
|
class TestGetServerIdentityResponseModel(unittest.TestCase):
|
|
def test_true(self):
|
|
self.assertTrue(True)
|
|
|
|
def test_get_server_identity_response(self):
|
|
# Create GetServerIdentityResponse class instance
|
|
test_model = GetServerIdentityResponse(MediaContainer={"eum": 1})
|
|
self.assertEqual(test_model.MediaContainer, {"eum": 1})
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|