M1-Palto-Server/Palto/Palto/api/v1/tests.py
2023-11-30 21:53:16 +01:00

19 lines
312 B
Python

"""
Tests for the Palto project's API v1.
Everything to test the API v1 is described here.
"""
from django import test
from Palto.Palto.models import User
class UserTestCase(test.TestCase):
def creation(self):
pass
class DepartmentTestCase(test.TestCase):
def creation(self):
pass