summaryrefslogtreecommitdiff
path: root/Lib/unittest/loader.py
diff options
context:
space:
mode:
authorMichael Foord <fuzzyman@voidspace.org.uk>2010-11-20 17:22:21 +0000
committerMichael Foord <fuzzyman@voidspace.org.uk>2010-11-20 17:22:21 +0000
commit81ed3543158327ccdfbfe635090cda3d136fb530 (patch)
tree8c6e203dd41884c40e741ff86a1e062a19700f5d /Lib/unittest/loader.py
parent0f60cebb9d4f433c1ea862cb05309a3cc6cf77b3 (diff)
downloadcpython-81ed3543158327ccdfbfe635090cda3d136fb530.tar.gz
Improve unittest.TestLoader.discover docstring
Diffstat (limited to 'Lib/unittest/loader.py')
-rw-r--r--Lib/unittest/loader.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/unittest/loader.py b/Lib/unittest/loader.py
index bff7b0af43..afdff67164 100644
--- a/Lib/unittest/loader.py
+++ b/Lib/unittest/loader.py
@@ -147,9 +147,9 @@ class TestLoader(object):
def discover(self, start_dir, pattern='test*.py', top_level_dir=None):
"""Find and return all test modules from the specified start
- directory, recursing into subdirectories to find them. Only test files
- that match the pattern will be loaded. (Using shell style pattern
- matching.)
+ directory, recursing into subdirectories to find them and return all
+ tests found within them. Only test files that match the pattern will
+ be loaded. (Using shell style pattern matching.)
All test modules must be importable from the top level of the project.
If the start directory is not the top level directory then the top