當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。