Django version 1.4.3
class FooTestCase(TestCase):
def test_deprecation_warning(self):
from django.template.loader import render_to_string
tpl = render_to_string('template.html')
在运行时,这会生成一个DeprecationWarning
C:\Python26\lib\site-packages\django\views\generic\simple.py:8: DeprecationWarning: Function-based generic views have been deprecated; use class-based views instead.
为什么?迁移页面中没有提到它https://docs.djangoproject.com/en/1.3/topics/generic-views-migration/