This commit is contained in:
Ezio Melotti 2010-01-27 20:25:11 +00:00
parent 654ade3e6a
commit 7b4e02c862
1 changed files with 3 additions and 3 deletions

View File

@ -241,8 +241,8 @@ The ``discover`` sub-command has the following options:
The -s, -p, & -t options can be passsed in as positional arguments. The
following two command lines are equivalent::
python -m unittest -s project_directory -p '*_test.py'
python -m unittest project_directory '*_test.py'
python -m unittest discover -s project_directory -p '*_test.py'
python -m unittest discover project_directory '*_test.py'
Test modules and packages can customize test loading and discovery by through
the `load_tests protocol`_.
@ -1445,7 +1445,7 @@ Loading and running tests
.. method:: stopTestRun(test)
Called once before any tests are executed.
Called once after all tests are executed.
.. versionadded:: 2.7