Skip to content
Snippets Groups Projects
tests.py 703 B
from django.contrib.auth.models import User
from django.test import TestCase

class LongerUsernameTests(TestCase):
    """
    Unit tests for longerusername app
    """
    def setUp(self):
        """
        creates a user with a terribly long username
        """
        long_username = ''.join([str(i) for i  in range(100)])
        self.user = User.objects.create_user('test' + long_username, 'test@test.com', 'testpassword')
    def testUserCreation(self):
        """
        tests that self.user was successfully saved, and can be retrieved
        """
        self.assertNotEqual(self.user,None)
        User.objects.get(id=self.user.id) # returns DoesNotExist error if the user wasn't created