Ticket #3277: test-docs-typos.diff

File test-docs-typos.diff, 883 bytes (added by Jeremy Dunck <jdunck@…>, 17 years ago)
  • docs/testing.txt

     
    220220
    221221    will result in the evaluation of a GET request equivalent to::
    222222
    223         http://yoursite.com/customers/details/?name='fred'&age=7
     223        http://yoursite.com/customers/details/?name=fred&age=7
    224224
    225225``post(path, data={})``
    226226    Make a POST request on the provided ``path``. The key-value pairs in the
     
    415415    tested. This is the same format returned by ``django.db.models.get_apps()``
    416416
    417417    Verbosity determines the amount of notification and debug information that
    418     will be printed to the console; '0' is no output, '1' is normal output,
     418    will be printed to the console; `0` is no output, `1` is normal output,
    419419    and `2` is verbose output.
    420420
    421421Testing utilities
Back to Top