1 2 3 4 5 6 7 8 9 10 11 12 13 | """
example of using the **extra kwarg param to add headers to the test client request
"""
from django.test.utils import setup_test_environment
setup_test_environment()
from django.test.client import Client
c = Client()
#example using a query string param
c.get('/some/path/', {'qs_param':'foo'}, **{'HTTP_USER_AGENT':'silly-human', 'REMOTE_ADDR':'127.0.0.1'})
#example without a query string param
c.get('/some/path/', **{'HTTP_USER_AGENT':'silly-human', 'REMOTE_ADDR':'127.0.0.1'})
|
More like this
- Effective content caching for mass-load site using redirect feature by nnseva 7 months ago
- django soaplib test client by erny 2 years, 10 months ago
- "Zoom in" on rendered HTML that the test client returns by peterbe 2 years, 9 months ago
- Simple Exception Response for AJAX debugging by newmaniese 3 years, 10 months ago
- SSL Middleware by sjzabel 4 years, 11 months ago
Comments