summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/definingviews.rst
diff options
context:
space:
mode:
authorPatricio Paez <pp@pp.com.mx>2011-04-20 19:41:33 -0500
committerPatricio Paez <pp@pp.com.mx>2011-04-20 19:41:33 -0500
commitce1278bc1de230ab9bf2ce03c36db829ad959d59 (patch)
tree0ea407c2520279543fda598e387ed87a29f6fccb /docs/tutorials/wiki/definingviews.rst
parent6717ccbcd7f481e2a15c4ba318ccf6d63a1b7649 (diff)
downloadpyramid-ce1278bc1de230ab9bf2ce03c36db829ad959d59.tar.gz
pyramid-ce1278bc1de230ab9bf2ce03c36db829ad959d59.tar.bz2
pyramid-ce1278bc1de230ab9bf2ce03c36db829ad959d59.zip
Adding Tests in the ZODB wiki tutorial
- New section in the main index - Move Model and View tests there - Added Functional tests
Diffstat (limited to 'docs/tutorials/wiki/definingviews.rst')
-rw-r--r--docs/tutorials/wiki/definingviews.rst45
1 files changed, 0 insertions, 45 deletions
diff --git a/docs/tutorials/wiki/definingviews.rst b/docs/tutorials/wiki/definingviews.rst
index 233e571f1..b6c083bbf 100644
--- a/docs/tutorials/wiki/definingviews.rst
+++ b/docs/tutorials/wiki/definingviews.rst
@@ -318,48 +318,3 @@ browser. The views we'll try are as follows:
will generate an ``IndexError`` for the expression
``request.subpath[0]``. You'll see an interactive traceback
facility provided by :term:`WebError`.
-
-Testing the Views
-=================
-
-We'll modify our ``tests.py`` file, adding tests for each view function we
-added above. As a result, we'll *delete* the ``ViewTests`` test in the file,
-and add four other test classes: ``ViewWikiTests``, ``ViewPageTests``,
-``AddPageTests``, and ``EditPageTests``. These test the ``view_wiki``,
-``view_page``, ``add_page``, and ``edit_page`` views respectively.
-
-Once we're done with the ``tests.py`` module, it will look a lot like the
-below:
-
-.. literalinclude:: src/views/tutorial/tests.py
- :linenos:
- :language: python
-
-Running the Tests
-=================
-
-We can run these tests by using ``setup.py test`` in the same way we did in
-:ref:`running_tests`. Assuming our shell's current working directory is the
-"tutorial" distribution directory:
-
-On UNIX:
-
-.. code-block:: text
-
- $ ../bin/python setup.py test -q
-
-On Windows:
-
-.. code-block:: text
-
- c:\pyramidtut\tutorial> ..\Scripts\python setup.py test -q
-
-The expected result looks something like:
-
-.. code-block:: text
-
- .........
- ----------------------------------------------------------------------
- Ran 9 tests in 0.203s
-
- OK