Removed a bunch of trailing whitespace. Don't people realise whitespace is a
scarce resource, not to be wasted? git-svn-id: http://code.djangoproject.com/svn/django/trunk@5169 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
b72c7d0517
commit
af846c0b8b
|
@ -468,30 +468,30 @@ that can be useful in testing the behavior of web sites.
|
||||||
times in the content of the response.
|
times in the content of the response.
|
||||||
|
|
||||||
``assertFormError(response, form, field, errors)``
|
``assertFormError(response, form, field, errors)``
|
||||||
Assert that a field on a form raised the provided list of errors when
|
Assert that a field on a form raised the provided list of errors when
|
||||||
rendered on the form.
|
rendered on the form.
|
||||||
|
|
||||||
``form`` is the name the form object was given in the template context.
|
``form`` is the name the form object was given in the template context.
|
||||||
|
|
||||||
``field`` is the name of the field on the form to check. If ``field``
|
``field`` is the name of the field on the form to check. If ``field``
|
||||||
has a value of ``None``, non-field errors will be checked.
|
has a value of ``None``, non-field errors will be checked.
|
||||||
|
|
||||||
``errors`` is an error string, or a list of error strings, that are
|
``errors`` is an error string, or a list of error strings, that are
|
||||||
expected as a result of form validation.
|
expected as a result of form validation.
|
||||||
|
|
||||||
``assertTemplateNotUsed(response, template_name)``
|
``assertTemplateNotUsed(response, template_name)``
|
||||||
Assert that the template with the given name was *not* used in rendering
|
Assert that the template with the given name was *not* used in rendering
|
||||||
the response.
|
the response.
|
||||||
|
|
||||||
``assertRedirects(response, expected_path)``
|
``assertRedirects(response, expected_path)``
|
||||||
Assert that the response received redirects the browser to the provided
|
Assert that the response received redirects the browser to the provided
|
||||||
path, and that the expected_path can be retrieved.
|
path, and that the expected_path can be retrieved.
|
||||||
|
|
||||||
``assertTemplateUsed(response, template_name)``
|
``assertTemplateUsed(response, template_name)``
|
||||||
Assert that the template with the given name was used in rendering the
|
Assert that the template with the given name was used in rendering the
|
||||||
response.
|
response.
|
||||||
|
|
||||||
|
|
||||||
Running tests
|
Running tests
|
||||||
=============
|
=============
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue