aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/tests/breadcrumbs.py
diff options
context:
space:
mode:
Diffstat (limited to 'djangorestframework/tests/breadcrumbs.py')
-rw-r--r--djangorestframework/tests/breadcrumbs.py17
1 files changed, 11 insertions, 6 deletions
diff --git a/djangorestframework/tests/breadcrumbs.py b/djangorestframework/tests/breadcrumbs.py
index d7473c6a..ae84106c 100644
--- a/djangorestframework/tests/breadcrumbs.py
+++ b/djangorestframework/tests/breadcrumbs.py
@@ -1,21 +1,26 @@
from django.conf.urls.defaults import patterns, url
from django.test import TestCase
from djangorestframework.utils.breadcrumbs import get_breadcrumbs
-from djangorestframework.views import View
+from djangorestframework.views import APIView
-class Root(View):
+
+class Root(APIView):
pass
-class ResourceRoot(View):
+
+class ResourceRoot(APIView):
pass
-class ResourceInstance(View):
+
+class ResourceInstance(APIView):
pass
-class NestedResourceRoot(View):
+
+class NestedResourceRoot(APIView):
pass
-class NestedResourceInstance(View):
+
+class NestedResourceInstance(APIView):
pass
urlpatterns = patterns('',