diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index 540900a..25d668b 100644
a
|
b
|
arguments at time of construction:
|
546 | 546 | |
547 | 547 | .. method:: Client.head(path, data={}) |
548 | 548 | |
549 | | .. versionadded:: development |
| 549 | .. versionadded:: 1.1 |
550 | 550 | |
551 | 551 | Makes a HEAD request on the provided ``path`` and returns a ``Response`` |
552 | 552 | object. Useful for testing RESTful interfaces. Acts just like |
… |
… |
arguments at time of construction:
|
554 | 554 | |
555 | 555 | .. method:: Client.options(path, data={}) |
556 | 556 | |
557 | | .. versionadded:: development |
| 557 | .. versionadded:: 1.1 |
558 | 558 | |
559 | 559 | Makes an OPTIONS request on the provided ``path`` and returns a |
560 | 560 | ``Response`` object. Useful for testing RESTful interfaces. |
561 | 561 | |
562 | 562 | .. method:: Client.put(path, data={}, content_type=MULTIPART_CONTENT) |
563 | 563 | |
564 | | .. versionadded:: development |
| 564 | .. versionadded:: 1.1 |
565 | 565 | |
566 | 566 | Makes an PUT request on the provided ``path`` and returns a |
567 | 567 | ``Response`` object. Useful for testing RESTful interfaces. Acts just |
… |
… |
arguments at time of construction:
|
569 | 569 | |
570 | 570 | .. method:: Client.delete(path) |
571 | 571 | |
572 | | .. versionadded:: development |
| 572 | .. versionadded:: 1.1 |
573 | 573 | |
574 | 574 | Makes an DELETE request on the provided ``path`` and returns a |
575 | 575 | ``Response`` object. Useful for testing RESTful interfaces. |