当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Django SimpleTestCase.client_class用法及代码示例


本文介绍 django.test.SimpleTestCase.client_class 的用法。

声明

SimpleTestCase.client_class

如果要使用不同的 Client 类(例如,具有自定义行为的子类),请使用 client_class 类属性:

from django.test import Client, TestCase

class MyTestClient(Client):
    # Specialized methods for your environment
    ...

class MyTest(TestCase):
    client_class = MyTestClient

    def test_my_stuff(self):
        # Here self.client is an instance of MyTestClient...
        call_some_test_code()

相关用法


注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.test.SimpleTestCase.client_class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。