summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/tests.rst
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2016-12-23 22:49:38 -0600
committerGitHub <noreply@github.com>2016-12-23 22:49:38 -0600
commit1a27bf722ddf945f13ebf2c5bdb9ca121ad15663 (patch)
treea523837721c01c441116737dcbb629b5f464cd2c /docs/tutorials/wiki2/tests.rst
parentd2f0fe8e44fd81d99142b8174c665354a072b774 (diff)
parentf4bfa2df091b09ff73d5f97a8f0a13a6b0ef17e0 (diff)
downloadpyramid-1a27bf722ddf945f13ebf2c5bdb9ca121ad15663.tar.gz
pyramid-1a27bf722ddf945f13ebf2c5bdb9ca121ad15663.tar.bz2
pyramid-1a27bf722ddf945f13ebf2c5bdb9ca121ad15663.zip
Merge pull request #2883 from stevepiercy/docs-cookiecutter-changes-only
docs cookiecutter changes only - wiki2
Diffstat (limited to 'docs/tutorials/wiki2/tests.rst')
-rw-r--r--docs/tutorials/wiki2/tests.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorials/wiki2/tests.rst b/docs/tutorials/wiki2/tests.rst
index e923ff9cb..67c7e65e0 100644
--- a/docs/tutorials/wiki2/tests.rst
+++ b/docs/tutorials/wiki2/tests.rst
@@ -8,7 +8,7 @@ We will now add tests for the models and views as well as a few functional
tests in a new ``tests`` subpackage. Tests ensure that an application works,
and that it continues to work when changes are made in the future.
-The file ``tests.py`` was generated as part of the ``alchemy`` scaffold, but it
+The file ``tests.py`` was generated as part of the ``alchemy`` cookiecutter, but it
is a common practice to put tests into a ``tests`` subpackage, especially as
projects grow in size and complexity. Each module in the test subpackage
should contain tests for its corresponding module in our application. Each
@@ -89,7 +89,7 @@ On Windows:
.. code-block:: doscon
- c:\pyramidtut\tutorial> %VENV%\Scripts\py.test -q
+ c:\tutorial> %VENV%\Scripts\py.test -q
The expected result should look like the following: