summaryrefslogtreecommitdiff
path: root/doc/en/builtin.rst
diff options
context:
space:
mode:
authorRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2015-09-22 14:02:11 +0200
committerRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2015-09-22 14:22:37 +0200
commit662d75597426e89cdc35b72f7def027ef1303d0f (patch)
tree0f2bb77354b4a457a25a06a9cba0213eb6664570 /doc/en/builtin.rst
parentbf9b94595c30834b235a25bb888ff1e4b8f2ae85 (diff)
downloadpytest-662d75597426e89cdc35b72f7def027ef1303d0f.tar.gz
fix documentation gegeneration, kill Makefile
Diffstat (limited to 'doc/en/builtin.rst')
-rw-r--r--doc/en/builtin.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/en/builtin.rst b/doc/en/builtin.rst
index 713e625db..5708362ff 100644
--- a/doc/en/builtin.rst
+++ b/doc/en/builtin.rst
@@ -73,6 +73,8 @@ You can ask for available builtin or project-custom
:ref:`fixtures <fixtures>` by typing::
$ py.test -q --fixtures
+ cache
+ /home/private/Projects/pytest-dev/pytest/.tox/regen/lib/python2.7/site-packages/_pytest/cacheprovider.py:176: no docstring available
capsys
enables capturing of writes to sys.stdout/sys.stderr and makes
captured output available via ``capsys.readouterr()`` method calls
@@ -81,6 +83,10 @@ You can ask for available builtin or project-custom
enables capturing of writes to file descriptors 1 and 2 and makes
captured output available via ``capfd.readouterr()`` method calls
which return a ``(out, err)`` tuple.
+ record_xml_property
+ Fixture that adds extra xml properties to the tag for the calling test.
+ The fixture is callable with (name, value), with value being automatically
+ xml-encoded.
monkeypatch
The returned ``monkeypatch`` funcarg provides these
helper methods to modify objects, dictionaries or os.environ::
@@ -108,6 +114,8 @@ You can ask for available builtin or project-custom
See http://docs.python.org/library/warnings.html for information
on warning categories.
+ tmpdir_factory
+ Return a TempdirFactory instance for the test session.
tmpdir
return a temporary directory path object
which is unique to each test function invocation,