Ticket #9436: 9436.diff

File 9436.diff, 1.4 KB (added by Marc Fargas, 15 years ago)

Fixes

  • docs/topics/testing.txt

    diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
    index 540900a..25d668b 100644
    a b arguments at time of construction:  
    546546
    547547    .. method:: Client.head(path, data={})
    548548
    549         .. versionadded:: development
     549        .. versionadded:: 1.1
    550550
    551551        Makes a HEAD request on the provided ``path`` and returns a ``Response``
    552552        object. Useful for testing RESTful interfaces. Acts just like
    arguments at time of construction:  
    554554
    555555    .. method:: Client.options(path, data={})
    556556
    557         .. versionadded:: development
     557        .. versionadded:: 1.1
    558558
    559559        Makes an OPTIONS request on the provided ``path`` and returns a
    560560        ``Response`` object. Useful for testing RESTful interfaces.
    561561
    562562    .. method:: Client.put(path, data={}, content_type=MULTIPART_CONTENT)
    563563
    564         .. versionadded:: development
     564        .. versionadded:: 1.1
    565565
    566566        Makes an PUT request on the provided ``path`` and returns a
    567567        ``Response`` object. Useful for testing RESTful interfaces. Acts just
    arguments at time of construction:  
    569569
    570570    .. method:: Client.delete(path)
    571571
    572         .. versionadded:: development
     572        .. versionadded:: 1.1
    573573
    574574        Makes an DELETE request on the provided ``path`` and returns a
    575575        ``Response`` object. Useful for testing RESTful interfaces.
Back to Top