1
0
mirror of https://github.com/django/django.git synced 2025-01-19 06:43:15 +00:00
django/tests/auth_tests/models/is_active.py
Tim Graham 2482c9dd24 [1.8.x] Moved non-documented auth test models to the new test location.
Backport of 5ab327a3894c26f57baabe14084bcce2a71b8af8 from master
2015-02-11 12:03:03 -05:00

19 lines
475 B
Python

from django.contrib.auth.models import AbstractBaseUser, BaseUserManager
from django.db import models
class IsActiveTestUser1(AbstractBaseUser):
"""
This test user class and derivatives test the default is_active behavior
"""
username = models.CharField(max_length=30, unique=True)
custom_objects = BaseUserManager()
USERNAME_FIELD = 'username'
class Meta:
app_label = 'auth'
# the is_active attr is provided by AbstractBaseUser