mirror of
https://github.com/django/django.git
synced 2024-11-19 16:04:13 +00:00
826b9ff5e5
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3708 bcc190cf-cafb-0310-a4f2-bffc1f526a37
11 lines
420 B
Python
11 lines
420 B
Python
from django.dispatch import dispatcher
|
|
from django.db.models import signals
|
|
import models as test_client_app
|
|
from django.contrib.auth.models import User
|
|
|
|
def setup_test(app, created_models, verbosity):
|
|
# Create a user account for the login-based tests
|
|
User.objects.create_user('testclient','testclient@example.com', 'password')
|
|
|
|
dispatcher.connect(setup_test, sender=test_client_app, signal=signals.post_syncdb)
|