Ticket #10374: testing-docs-versionadded-development.diff

File testing-docs-versionadded-development.diff, 1.9 KB (added by Ramiro Morales, 15 years ago)
  • docs/topics/testing.txt

    diff -r 87e4a26334b1 docs/topics/testing.txt
    a b  
    493493
    494494            /customers/details/?name=fred&age=7
    495495
    496         .. versionadded:: development
     496        .. versionadded:: 1.1
    497497
    498498        If you already have the GET arguments in URL-encoded form, you can
    499499        use that encoding instead of using the data argument. For example,
     
    556556        Note that you should manually close the file after it has been provided
    557557        to ``post()``.
    558558
    559         .. versionadded:: development
     559        .. versionadded:: 1.1
    560560
    561561        If the URL you request with a POST contains encoded parameters, these
    562562        parameters will be made available in the request.GET data. For example,
     
    570570
    571571    .. method:: Client.head(path, data={})
    572572
    573         .. versionadded:: development
     573        .. versionadded:: 1.1
    574574
    575575        Makes a HEAD request on the provided ``path`` and returns a ``Response``
    576576        object. Useful for testing RESTful interfaces. Acts just like
     
    578578
    579579    .. method:: Client.options(path, data={})
    580580
    581         .. versionadded:: development
     581        .. versionadded:: 1.1
    582582
    583583        Makes an OPTIONS request on the provided ``path`` and returns a
    584584        ``Response`` object. Useful for testing RESTful interfaces.
    585585
    586586    .. method:: Client.put(path, data={}, content_type=MULTIPART_CONTENT)
    587587
    588         .. versionadded:: development
     588        .. versionadded:: 1.1
    589589
    590590        Makes an PUT request on the provided ``path`` and returns a
    591591        ``Response`` object. Useful for testing RESTful interfaces. Acts just
     
    593593
    594594    .. method:: Client.delete(path)
    595595
    596         .. versionadded:: development
     596        .. versionadded:: 1.1
    597597
    598598        Makes an DELETE request on the provided ``path`` and returns a
    599599        ``Response`` object. Useful for testing RESTful interfaces.
Back to Top