我想知道在测试时django正在读取哪个模板文件。
我在网站上使用MEZZANINE。我试图更改主页。但是我不确定要更改哪个文件。
from django.test import TestCase
import os
# Create your tests here.
class ProjectTests(TestCase):
def test_homepage(self):
response = self.client.get('/')
#print dir(response)
print response.template_name
self.assertEqual(response.status_code, 200)
我希望打印response.template_name
的绝对路径。谢谢。