Changeset 5989
- Timestamp:
- 08/20/07 21:35:01 (1 year ago)
- Files:
-
- django/trunk/docs/testing.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/testing.txt
r5916 r5989 474 474 475 475 >>> c = Client() 476 >>> c. get('/login/', {'name': 'fred', 'passwd': 'secret'})476 >>> c.post('/login/', {'name': 'fred', 'passwd': 'secret'}) 477 477 478 478 ...will result in the evaluation of a POST request to this URL::
