2
有沒有方法可以測試測試客戶端返回的response.context對象,RequestContext對象是?我檢查了源代碼,看起來他們將上下文包裝在ContextList對象中。Django測試客戶端:測試該上下文是否爲RequestContext對象
有沒有方法可以測試測試客戶端返回的response.context對象,RequestContext對象是?我檢查了源代碼,看起來他們將上下文包裝在ContextList對象中。Django測試客戶端:測試該上下文是否爲RequestContext對象
檢查是否的ContextList不爲空,然後檢查這是一個RequestContext
對象的項目:
from django.template import RequestContext
response = client.post(...)
context_list = response.context
for context in context_list:
if isinstance(context, RequestContext):
# do some more test checks here