如何在Django测试中作为响应打印html文件的路径

时间:2019-07-11 19:14:09

标签: python django django-testing

我想知道在测试时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的绝对路径。谢谢。

0 个答案:

没有答案