From 8e54d07c404597b0b4eb2c38a3e6550de0121df7 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Mon, 26 Oct 2015 22:46:35 -0200 Subject: [PATCH] Fix link in FAQ about parametrizing tests Fix #1154 --- doc/en/faq.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/en/faq.rst b/doc/en/faq.rst index 88ae460e5..c6de844ec 100644 --- a/doc/en/faq.rst +++ b/doc/en/faq.rst @@ -141,10 +141,10 @@ However, with pytest-2.3 you can use the :ref:`@pytest.fixture` decorator and specify ``params`` so that all tests depending on the factory-created resource will run multiple times with different parameters. -You can also use the `pytest_generate_tests`_ hook to -implement the `parametrization scheme of your choice`_. +You can also use the ``pytest_generate_tests`` hook to +implement the `parametrization scheme of your choice`_. See also +:ref:`paramexamples` for more examples. -.. _`pytest_generate_tests`: test/funcargs.html#parametrizing-tests .. _`parametrization scheme of your choice`: http://tetamap.wordpress.com/2009/05/13/parametrizing-python-tests-generalized/ pytest interaction with other packages