mirror of
https://github.com/LukeHagar/plexpy.git
synced 2025-12-10 04:21:03 +00:00
SDK update generated by liblab
This commit is contained in:
16
test/models/test_get_recently_added_response.py
Normal file
16
test/models/test_get_recently_added_response.py
Normal file
@@ -0,0 +1,16 @@
|
||||
import unittest
|
||||
from src.plexsdk.models.GetRecentlyAddedResponse import GetRecentlyAddedResponse
|
||||
|
||||
|
||||
class TestGetRecentlyAddedResponseModel(unittest.TestCase):
|
||||
def test_true(self):
|
||||
self.assertTrue(True)
|
||||
|
||||
def test_get_recently_added_response(self):
|
||||
# Create GetRecentlyAddedResponse class instance
|
||||
test_model = GetRecentlyAddedResponse(MediaContainer={"numquam": 1})
|
||||
self.assertEqual(test_model.MediaContainer, {"numquam": 1})
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user