From 05915720f97df868e0b7dcff6e9b8eed964b8a90 Mon Sep 17 00:00:00 2001
From: Steve Piercy <web@stevepiercy.com>
Date: Tue, 09 Oct 2018 17:20:26 +0200
Subject: [PATCH] Merge pull request #3380 from stevepiercy/docs-quick-tutorial-update

---
 docs/quick_tutorial/unit_testing.rst |   11 +++--------
 1 files changed, 3 insertions(+), 8 deletions(-)

diff --git a/docs/quick_tutorial/unit_testing.rst b/docs/quick_tutorial/unit_testing.rst
index 2e58ee8..6549253 100644
--- a/docs/quick_tutorial/unit_testing.rst
+++ b/docs/quick_tutorial/unit_testing.rst
@@ -54,14 +54,14 @@
     .. literalinclude:: unit_testing/setup.py
         :language: python
         :linenos:
-        :emphasize-lines: 11-15
+        :emphasize-lines: 15
 
 #.  Install our project and its newly added dependency.
-    Note that we use the extra specifier ``[test]`` to install testing requirements.
+    Note that we use the extra specifier ``[dev]`` to install testing requirements for development and surround it and the period with double quote marks.
 
     .. code-block:: bash
 
-        $VENV/bin/pip install -e .[test]
+        $VENV/bin/pip install -e ".[dev]"
 
 #.  Now we write a simple unit test in ``unit_testing/tutorial/tests.py``:
 
@@ -101,11 +101,6 @@
 ``pyramid.testing.tearDown()`` aren't actually necessary here; they are only
 necessary when your test needs to make use of the ``config`` object (it's a
 Configurator) to add stuff to the configuration state before calling the view.
-
-Finally we've introduced the concept of :term:`Setuptools` extras.
-These are optional or recommended features that may be installed with an "extras" specifier.
-The specifier is the name of a key in a Python dictionary, and is surrounded by square brackets when invoked on the command line.
-The value for the key is a Python list of dependencies.
 
 
 Extra credit

--
Gitblit v1.9.3