r77796 - python/trunk/Doc/library/unittest.rst
Author: ezio.melotti Date: Wed Jan 27 21:25:11 2010 New Revision: 77796 Log: #7765: typos Modified: python/trunk/Doc/library/unittest.rst Modified: python/trunk/Doc/library/unittest.rst ============================================================================== --- python/trunk/Doc/library/unittest.rst (original) +++ python/trunk/Doc/library/unittest.rst Wed Jan 27 21:25:11 2010 @@ -241,8 +241,8 @@ 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 @@ .. method:: stopTestRun(test) - Called once before any tests are executed. + Called once after all tests are executed. .. versionadded:: 2.7
participants (1)
-
ezio.melotti