First commit

This commit is contained in:
2026-07-25 10:32:28 +01:00
commit f614bcd4b6
11 changed files with 356 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import os
import unittest
from Service import Service
CDIR = os.path.dirname(__file__)
class TestService(unittest.TestCase):
def test_service_init(self):
name: str = "jellyfin"
newService: Service = Service(name)
self.assertEqual(newService.name, name)