SDK update generated by liblab

This commit is contained in:
Luke Hagar
2023-10-26 21:45:48 -05:00
parent 9a250ff514
commit ce4441cfc5
101 changed files with 13165 additions and 1 deletions

14
test/models/test_base.py Normal file
View File

@@ -0,0 +1,14 @@
import unittest
import responses
from http import HTTPStatus
from src.plexsdk.models.base import BaseModel
from http_exceptions import ClientException
class TestBaseModel(unittest.TestCase):
def test_true(self):
self.assertTrue(True)
if __name__ == "__main__":
unittest.main()