1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #16074 -- Added ContextMixin to class-based generic views to handle get_context_data. Thanks emyller, Luke Plant, Preston Holmes for working on the ticket and patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17875 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Claude Paroz
2012-04-06 21:24:33 +00:00
parent b4a9827133
commit 8663bc1103
9 changed files with 77 additions and 38 deletions

View File

@@ -1,6 +1,7 @@
from __future__ import absolute_import
from .base import ViewTest, TemplateViewTest, RedirectViewTest
from .base import (ViewTest, TemplateViewTest, RedirectViewTest,
GetContextDataTest)
from .dates import (ArchiveIndexViewTests, YearArchiveViewTests,
MonthArchiveViewTests, WeekArchiveViewTests, DayArchiveViewTests,
DateDetailViewTests)