diff options
Diffstat (limited to 'docs/quick_tutorial/json.rst')
| -rw-r--r-- | docs/quick_tutorial/json.rst | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/quick_tutorial/json.rst b/docs/quick_tutorial/json.rst index ff153d2b5..98283424c 100644 --- a/docs/quick_tutorial/json.rst +++ b/docs/quick_tutorial/json.rst @@ -31,32 +31,32 @@ Steps .. code-block:: bash - $ cd ..; cp -r view_classes json; cd json - $ $VENV/bin/pip install -e . + cd ..; cp -r view_classes json; cd json + $VENV/bin/pip install -e . #. We add a new route for ``hello_json`` in ``json/tutorial/__init__.py``: .. literalinclude:: json/tutorial/__init__.py - :linenos: + :linenos: #. Rather than implement a new view, we will "stack" another decorator on the ``hello`` view in ``views.py``: .. literalinclude:: json/tutorial/views.py - :linenos: + :linenos: #. We need a new functional test at the end of ``json/tutorial/tests.py``: .. literalinclude:: json/tutorial/tests.py - :linenos: + :linenos: #. Run the tests: .. code-block:: bash - $ $VENV/bin/py.test tutorial/tests.py -q - ..... - 5 passed in 0.47 seconds + $VENV/bin/py.test tutorial/tests.py -q + ..... + 5 passed in 0.47 seconds #. Run your Pyramid application with: |
