aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/tests/modelviews.py
diff options
context:
space:
mode:
Diffstat (limited to 'djangorestframework/tests/modelviews.py')
-rw-r--r--djangorestframework/tests/modelviews.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/djangorestframework/tests/modelviews.py b/djangorestframework/tests/modelviews.py
index 031e65c5..ccd8513f 100644
--- a/djangorestframework/tests/modelviews.py
+++ b/djangorestframework/tests/modelviews.py
@@ -1,5 +1,4 @@
from django.conf.urls.defaults import patterns, url
-from django.test import TestCase
from django.forms import ModelForm
from django.contrib.auth.models import Group, User
from djangorestframework.resources import ModelResource
@@ -7,18 +6,22 @@ from djangorestframework.views import ListOrCreateModelView, InstanceModelView
from djangorestframework.tests.models import CustomUser
from djangorestframework.tests.testcases import TestModelsTestCase
+
class GroupResource(ModelResource):
model = Group
+
class UserForm(ModelForm):
class Meta:
model = User
exclude = ('last_login', 'date_joined')
+
class UserResource(ModelResource):
model = User
form = UserForm
+
class CustomUserResource(ModelResource):
model = CustomUser