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
- Pretty print SQL of query sets by peterbe 4 years ago
- Effective content caching for mass-load site using redirect feature by nnseva 1 year, 10 months ago
- QuerySetManager - easily add new QuerySet methods using a Model inner class by simon 5 years ago
- django soaplib test client by erny 4 years, 1 month ago
- Add context_data to a UpdateView if form is valid by jayfk 1 week, 2 days ago
Comments