Removed note about yield fixtures being experimental

--HG--
branch : yield-experimental-docs
This commit is contained in:
Bruno Oliveira 2015-04-03 16:28:20 -03:00
parent e16983d265
commit c1b935adbd
1 changed files with 1 additions and 9 deletions

View File

@ -9,15 +9,7 @@ Fixture functions using "yield" / context manager integration
pytest-2.4 allows fixture functions to seamlessly use a ``yield`` instead
of a ``return`` statement to provide a fixture value while otherwise
fully supporting all other fixture features.
.. note::
"yielding" fixture values is an experimental feature and its exact
declaration may change later but earliest in a 2.5 release. You can thus
safely use this feature in the 2.4 series but may need to adapt later.
Test functions themselves will not need to change (as a general
feature, they are ignorant of how fixtures are setup).
fully supporting all other fixture features.
Let's look at a simple standalone-example using the new ``yield`` syntax::