From 6bcfadec07e1ac901f7ea3777db623731c4e6f58 Mon Sep 17 00:00:00 2001 From: Michael Foord Date: Sat, 20 Nov 2010 17:22:21 +0000 Subject: [PATCH] Improve unittest.TestLoader.discover docstring --- Lib/unittest/loader.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/unittest/loader.py b/Lib/unittest/loader.py index bff7b0af43e..afdff671643 100644 --- a/Lib/unittest/loader.py +++ b/Lib/unittest/loader.py @@ -147,9 +147,9 @@ def isTestMethod(attrname, testCaseClass=testCaseClass, 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