Steve Piercy
2018-10-08 2cf5a0f5a5236ba63f815bde04e6871f12e34a0a
Reformat numbered list.
1 files modified
41 ■■■■ changed files
docs/quick_tutorial/view_classes.rst 41 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/view_classes.rst
@@ -37,41 +37,38 @@
Steps
=====
#. First we copy the results of the previous step:
#.  First we copy the results of the previous step:
   .. code-block:: bash
    .. code-block:: bash
       cd ..; cp -r templating view_classes; cd view_classes
       $VENV/bin/pip install -e .
        cd ..; cp -r templating view_classes; cd view_classes
        $VENV/bin/pip install -e .
#. Our ``view_classes/tutorial/views.py`` now has a view class with our two
   views:
#.  Our ``view_classes/tutorial/views.py`` now has a view class with our two views:
   .. literalinclude:: view_classes/tutorial/views.py
       :linenos:
    .. literalinclude:: view_classes/tutorial/views.py
        :linenos:
#. Our unit tests in ``view_classes/tutorial/tests.py`` don't run, so let's
   modify them to import the view class, and make an instance before getting a
   response:
#.  Our unit tests in ``view_classes/tutorial/tests.py`` don't run, so let's modify them to import the view class, and make an instance before getting a response:
   .. literalinclude:: view_classes/tutorial/tests.py
       :linenos:
    .. literalinclude:: view_classes/tutorial/tests.py
        :linenos:
#. Now run the tests:
#.  Now run the tests:
   .. code-block:: bash
    .. code-block:: bash
       $VENV/bin/pytest tutorial/tests.py -q
       ....
       4 passed in 0.34 seconds
        $VENV/bin/pytest tutorial/tests.py -q
        ....
        4 passed in 0.34 seconds
#. Run your Pyramid application with:
#.  Run your Pyramid application with:
   .. code-block:: bash
    .. code-block:: bash
       $VENV/bin/pserve development.ini --reload
        $VENV/bin/pserve development.ini --reload
#. Open http://localhost:6543/ and http://localhost:6543/howdy in your browser.
#.  Open http://localhost:6543/ and http://localhost:6543/howdy in your browser.
Analysis