mirror of
https://github.com/LukeHagar/plexpy.git
synced 2025-12-06 04:20:52 +00:00
15 lines
297 B
Python
15 lines
297 B
Python
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()
|