Skip to content
Snippets Groups Projects
Commit 00c85357 authored by Haakon Gunleiksrud's avatar Haakon Gunleiksrud
Browse files

get skeleton for testing of userserializer

parent d49ebb95
No related branches found
No related tags found
3 merge requests!15Dev,!10Dev,!9Fr5 bb testing
No preview for this file type
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment