diff --git a/backend/secfit/.coverage b/backend/secfit/.coverage index c8e6278232f9a5fbd9914fffb587ee1587ae6212..9acfb54464242593cec99386dc860cb932dafce6 100644 Binary files a/backend/secfit/.coverage and b/backend/secfit/.coverage differ diff --git a/backend/secfit/users/tests.py b/backend/secfit/users/tests.py index 7ce503c2dd97ba78597f6ff6e4393132753573f6..b8d7ef046d9e48169b64a0eef147f8bc4f982675 100644 --- a/backend/secfit/users/tests.py +++ b/backend/secfit/users/tests.py @@ -1,3 +1,22 @@ from django.test import TestCase # Create your tests here. +""" +Tests for UserSerializers ./serializers.py +""" + +class UserSerializerTestCase(TestCase): + + def setUp(self): + #password = serializers.CharField(style={"input_type": "password"}, write_only=True) + #password1 = serializers.CharField(style={"input_type": "password"}, write_only=True) + pass + + def test_validate_password(self): + pass + + def test_create(self): + pass + + def tearDown(self): + return super().tearDown() \ No newline at end of file