fix issue275 - allow usefixtures and autouse fixtures

for running doctest text files.
This commit is contained in:
holger krekel
2013-11-22 15:35:20 +01:00
parent 4031588811
commit c0dd7c5975
4 changed files with 33 additions and 1 deletions

View File

@@ -56,3 +56,7 @@ It is possible to use fixtures using the ``getfixture`` helper::
# content of example.rst
>>> tmp = getfixture('tmpdir')
>>> ...
>>>
Also, :ref:`usefixtures` and :ref:`autouse` fixtures are supported
when executing text doctest files.