diff options
Diffstat (limited to 'djangorestframework/tests/breadcrumbs.py')
| -rw-r--r-- | djangorestframework/tests/breadcrumbs.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/djangorestframework/tests/breadcrumbs.py b/djangorestframework/tests/breadcrumbs.py index 1fd75634..158f1800 100644 --- a/djangorestframework/tests/breadcrumbs.py +++ b/djangorestframework/tests/breadcrumbs.py @@ -1,21 +1,21 @@ from django.conf.urls.defaults import patterns, url from django.test import TestCase from djangorestframework.utils.breadcrumbs import get_breadcrumbs -from djangorestframework.views import BaseView +from djangorestframework.views import View -class Root(BaseView): +class Root(View): pass -class ResourceRoot(BaseView): +class ResourceRoot(View): pass -class ResourceInstance(BaseView): +class ResourceInstance(View): pass -class NestedResourceRoot(BaseView): +class NestedResourceRoot(View): pass -class NestedResourceInstance(BaseView): +class NestedResourceInstance(View): pass urlpatterns = patterns('', |
