[Checkins] SVN: zope.testing/trunk/src/zope/testing/testrunner/testrunner-discovery.txt fix documentation to agree with the code

Wolfgang Schnerring wosc at wosc.de
Thu Jul 30 05:58:36 EDT 2009


Log message for revision 102374:
  fix documentation to agree with the code
  

Changed:
  U   zope.testing/trunk/src/zope/testing/testrunner/testrunner-discovery.txt

-=-
Modified: zope.testing/trunk/src/zope/testing/testrunner/testrunner-discovery.txt
===================================================================
--- zope.testing/trunk/src/zope/testing/testrunner/testrunner-discovery.txt	2009-07-30 07:42:06 UTC (rev 102373)
+++ zope.testing/trunk/src/zope/testing/testrunner/testrunner-discovery.txt	2009-07-30 09:58:35 UTC (rev 102374)
@@ -1,11 +1,11 @@
 Automatically discovering tests
 ===============================
 
-You can explicitly specify which tests to run by providing a unittest.TestSuite
-object (or a callable that returns one) in the test modules (the name of the
-object or function can be configured with the --suite-name parameter, it
-defaults to 'test_suite'). If no such object is present, testrunner will use
-all classes in the module that inherit from unittest.TestCase as tests:
+You can explicitly specify which tests to run by providing a function that
+returns a unittest.TestSuite in the test modules (the name of the function can
+be configured with the --suite-name parameter, it defaults to 'test_suite'). If
+no such function is present, testrunner will use all classes in the module that
+inherit from unittest.TestCase as tests:
 
     >>> import os, sys
     >>> directory_with_tests = os.path.join(this_directory, 'testrunner-ex')



More information about the Checkins mailing list