From 526c564576d641ffdef12654fca6d63dc8f66ebc Mon Sep 17 00:00:00 2001 From: Raphael Pierzina Date: Sat, 25 Jun 2016 11:06:17 +0200 Subject: [PATCH] Fix rst bullet point lists --- doc/en/parametrize_with_fixtures.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/en/parametrize_with_fixtures.rst b/doc/en/parametrize_with_fixtures.rst index 762f1d8a4..d65e5eb15 100644 --- a/doc/en/parametrize_with_fixtures.rst +++ b/doc/en/parametrize_with_fixtures.rst @@ -13,9 +13,13 @@ cookiecutter template. We want to test default values but also data that emulates user input. - use default values + - emulate user input + - specify 'author' + - specify 'project_slug' + - specify 'author' and 'project_slug' This is how a functional test could look like: @@ -92,8 +96,11 @@ The new fixture ``context`` inherits the scope from the used fixtures and yield the following values. - ``{}`` + - ``{'author': 'alice'}`` + - ``{'project_slug': 'helloworld'}`` + - ``{'author': 'bob', 'project_slug': 'foobar'}`` Alternative approach