aboutsummaryrefslogtreecommitdiffstats
path: root/docs/pathod/test.rst
blob: cd6e8a29c5f4f16c9de56d78fae0f6cab366d8fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
.. _test:

pathod.test
===========

The **pathod.test** module is a light, flexible testing layer for HTTP clients.
It works by firing up a Pathod instance in a separate thread, letting you use
Pathod's full abilities to generate responses, and then query Pathod's internal
logs to establish what happened. All the mechanics of startup, shutdown, finding
free ports and so forth are taken care of for you.

The canonical docs can be accessed using pydoc:

>>> pydoc pathod.test

The remainder of this page demonstrates some common interaction patterns using
<a href="http://nose.readthedocs.org/en/latest/">nose</a>. These examples are
also applicable with only minor modification to most commonly used Python testing
engines.


Context Manager
---------------

.. literalinclude:: ../../examples/pathod/test_context.py
   :caption: examples/pathod/test_context.py
   :language: python


One instance per test
---------------------

.. literalinclude:: ../../examples/pathod/test_setup.py
   :caption: examples/pathod/test_setup.py
   :language: python